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

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

@@ -23,8 +23,8 @@ public abstract class ShowCurrentConfigurationTests<C extends Configuration> ext
@Override
protected boolean canStart(Object... args) throws Exception {
target = null;
if (Current_.Check(Log, currentName())) {
target = (C) Current_.get(currentName());
if (Global.mainModule.Check(Log, currentName())) {
target = (C) Global.mainModule.get(currentName());
return true;
}
return false;