no message

This commit is contained in:
2023-10-01 23:22:07 +03:00
parent b6bd529fb1
commit bf25aae4d9
8 changed files with 40 additions and 22 deletions

View File

@@ -1,27 +0,0 @@
package Visual_DVM_2021.Passes.All;
import Common.Current;
import Common.Database.Database;
import Common.Global;
import Common.UI.UI;
import SapforTestingSystem.SapforTasksPackage.SapforTasksPackage;
import Visual_DVM_2021.Passes.DeleteObjectPass;
public class DeleteSapforTasksPackage extends DeleteObjectPass<SapforTasksPackage> {
public DeleteSapforTasksPackage() {
super(SapforTasksPackage.class);
}
@Override
protected Database getDb() {
return Global.db;
}
@Override
protected void performPreparation() throws Exception {
if (Current.hasUI()) {
UI.getMainWindow().getTestingWindow().RemoveSapforPackageFromComparison(target);
}
}
@Override
protected void body() throws Exception {
super.body();
// Utils.delete_with_check(new File(target.workspace));
}
}