перенос проходов в центральный модуль

This commit is contained in:
2024-10-13 23:55:03 +03:00
parent 6afa2dc892
commit 4e86871571
150 changed files with 510 additions and 576 deletions

View File

@@ -62,9 +62,9 @@ public class Run extends Pass<db_project_info> {
switch (Global.mainModule.getMachine().type) {
case Local:
if (Utils_.isWindows()) {
subpass = passes.get(PassCode.WindowsLocalRun);
subpass = Global.mainModule.getPass(PassCode.WindowsLocalRun);
} else
subpass = passes.get(PassCode.LinuxLocalRun);
subpass = Global.mainModule.getPass(PassCode.LinuxLocalRun);
break;
case Undefined:
case MVS_cluster:
@@ -75,7 +75,7 @@ public class Run extends Pass<db_project_info> {
break;
*/
default:
subpass = passes.get(PassCode.ServerRun);
subpass = Global.mainModule.getPass(PassCode.ServerRun);
break;
}
int i = 1;
@@ -96,7 +96,7 @@ public class Run extends Pass<db_project_info> {
task_completed = true;
if (task.hasDvmSts) {
Utils.CheckAndCleanDirectory(Global.mainModule.getProject().getStatisticDirectory());
Pass.passes.get(PassCode.SPF_StatisticAnalyzer).Do(task);
Global.mainModule.getPass(PassCode.SPF_StatisticAnalyzer).Do(task);
}
break;
case Finished: