рефакторинг. переносил текущие объекты в другое место

This commit is contained in:
2024-10-13 22:08:13 +03:00
parent 09b64218bd
commit 6afa2dc892
240 changed files with 1472 additions and 1518 deletions

View File

@@ -1,5 +1,6 @@
package Visual_DVM_2021.Passes.All;
import _VisualDVM.Current;
import _VisualDVM.Global;
import _VisualDVM.Utils;
import _VisualDVM.Repository.Component.Component;
import Visual_DVM_2021.Passes.PassCode;
@@ -19,7 +20,7 @@ public class BuildComponent extends ProcessPass<Component> {
}
@Override
protected boolean canStart(Object... args) throws Exception {
target = Current.getComponent();
target = Global.mainModule.getComponent();
return true;
}
@Override