no message

This commit is contained in:
2024-10-15 20:06:58 +03:00
parent f353c1b90c
commit fae3ecc8b9
5 changed files with 11 additions and 21 deletions

View File

@@ -317,12 +317,6 @@ public class Global {
supervisor.Perform();
}
}
public static void LocalMachineQueueMode(String... args) throws Exception {
LocalDVMTestingPlanner supervisor = new LocalDVMTestingPlanner(args);
while (true) {
supervisor.Perform();
}
}
//---
public static void Init(String... args) {
System.out.println("VisualSapfor.jar started..");
@@ -348,9 +342,6 @@ public class Global {
case MachineQueue:
MachineQueueMode(args);
break;
case LocalMachineQueue:
LocalMachineQueueMode(args);
break;
case Undefined:
break;
}