no message

This commit is contained in:
2024-10-09 23:37:58 +03:00
parent eb278676cc
commit d1ffab1e70
299 changed files with 1844 additions and 1539 deletions

View File

@@ -1,15 +1,15 @@
package Visual_DVM_2021.Passes.All;
import Common.CurrentAnchestor;
import Common.Current_;
import _VisualDVM.Current;
import _VisualDVM.ProjectData.Project.db_project_info;
import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.Pass_2021;
import Visual_DVM_2021.Passes.PassCode;
import Visual_DVM_2021.Passes.Pass;
import java.util.Vector;
public class DeleteLonelyM extends Pass_2021<db_project_info> {
public class DeleteLonelyM extends Pass<db_project_info> {
@Override
protected boolean canStart(Object... args) throws Exception {
if (CurrentAnchestor.Check(Log, Current.Root)) {
if (Current_.Check(Log, Current.Root)) {
target = Current.getRoot();
return true;
}
@@ -19,7 +19,7 @@ public class DeleteLonelyM extends Pass_2021<db_project_info> {
protected void body() throws Exception {
Vector<db_project_info> targets = target.getLonelyM();
for (db_project_info m : targets) {
passes.get(PassCode_2021.DeleteVersion).Do(m);
passes.get(PassCode.DeleteVersion).Do(m);
}
}
}