Files
VisualSapfor/src/Visual_DVM_2021/Passes/All/DeleteProfile.java

15 lines
415 B
Java
Raw Normal View History

package Visual_DVM_2021.Passes.All;
2023-09-17 22:13:42 +03:00
import Common.Database.Database;
2024-10-11 00:00:30 +03:00
import Common.Utils.Utils_;
2024-10-09 22:21:57 +03:00
import _VisualDVM.GlobalData.SapforProfile.SapforProfile;
2024-10-10 23:57:36 +03:00
import Common.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-11 00:00:30 +03:00
return Utils_.db;
2023-09-17 22:13:42 +03:00
}
}