no message
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -336,14 +336,14 @@ public class MainModule extends MainModule_<GlobalDatabase, MainUI> {
|
||||
}
|
||||
@Override
|
||||
public boolean confirmPassesStart() {
|
||||
return hasUI()&&Global.properties.ConfirmPassesStart;
|
||||
return Global.properties.ConfirmPassesStart;
|
||||
}
|
||||
@Override
|
||||
public boolean confirmPassesDone() {
|
||||
return hasUI()&&Global.properties.ShowPassesDone;
|
||||
return Global.properties.ShowPassesDone;
|
||||
}
|
||||
@Override
|
||||
public boolean focusPassesResult() {
|
||||
return hasUI()&&Global.properties.FocusPassesResult;
|
||||
return Global.properties.FocusPassesResult;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,5 @@ public enum Mode {
|
||||
Server,
|
||||
Testing,
|
||||
Package,
|
||||
MachineQueue,
|
||||
LocalMachineQueue
|
||||
MachineQueue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user