no message

This commit is contained in:
2024-10-07 14:22:52 +03:00
parent 6b1576461d
commit 61fc37b574
173 changed files with 960 additions and 1526 deletions

View File

@@ -1,5 +1,5 @@
package Visual_DVM_2021.Passes;
import Common_old.Constants;
import Common.CommonConstants;
import _VisualDVM.Global;
import Common_old.Utils.Utils;
import TestingSystem.Common.TestingPackage.TestingPackage;
@@ -35,7 +35,7 @@ public abstract class DeleteTestingPackages<P extends TestingPackage> extends De
if (super.canStart(args) && checkActivity()) {
for (Object key : target) {
int id = (int) key;
if (id == Constants.Nan) {
if (id == CommonConstants.Nan) {
delete_draft = true;
} else {
target_.add(id);
@@ -57,7 +57,7 @@ public abstract class DeleteTestingPackages<P extends TestingPackage> extends De
}
void DeleteDraftOnly() throws Exception {
showPreparation();
getDb().tables.get(d).Data.remove(Constants.Nan);
getDb().tables.get(d).Data.remove(CommonConstants.Nan);
getDb().tables.get(d).ShowUI();
}
@Override