2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Database.Database;
|
2024-10-08 01:30:25 +03:00
|
|
|
import Common.Utils.CommonUtils;
|
2023-09-17 22:13:42 +03:00
|
|
|
import GlobalData.SapforProfile.SapforProfile;
|
2023-11-19 02:12:44 +03:00
|
|
|
import Visual_DVM_2021.Passes.DeleteObjectPass;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class DeleteProfile extends DeleteObjectPass<SapforProfile> {
|
|
|
|
|
public DeleteProfile() {
|
|
|
|
|
super(SapforProfile.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected Database getDb() {
|
2024-10-08 01:30:25 +03:00
|
|
|
return CommonUtils.db;
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|