no message

This commit is contained in:
2024-10-09 23:37:58 +03:00
parent eb278676cc
commit d1ffab1e70
299 changed files with 1844 additions and 1539 deletions

View File

@@ -1,5 +1,5 @@
package Visual_DVM_2021.Passes.All;
import Common.CurrentAnchestor;
import Common.Current_;
import Common.Visual.CommonUI;
import _VisualDVM.Current;
import _VisualDVM.Global;
@@ -9,7 +9,7 @@ import _VisualDVM.GlobalData.User.UserState;
import _VisualDVM.TestingSystem.Common.TestingServer;
import _VisualDVM.TestingSystem.DVM.DVMConfiguration.DVMConfiguration;
import _VisualDVM.TestingSystem.DVM.DVMPackage.DVMPackage;
import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.PassCode;
import Visual_DVM_2021.Passes.Server.PublishServerObject;
import java.util.Vector;
@@ -27,7 +27,7 @@ public class StartSelectedDVMConfigurations extends PublishServerObject<TestingS
if (!Current.getAccount().CheckRegistered(Log)) {
return false;
}
if (!CurrentAnchestor.Check(Log, Current.Machine, Current.User, Current.Compiler))
if (!Current_.Check(Log, Current.Machine, Current.User, Current.Compiler))
return false;
if (!Current.getMachine().type.equals(MachineType.Server)) {
Log.Writeln_("Тестирование поддерживается только на одиночном удалённом сервере.");
@@ -42,7 +42,7 @@ public class StartSelectedDVMConfigurations extends PublishServerObject<TestingS
return false;
}
if (!Current.getCompiler().versionLoaded)
passes.get(PassCode_2021.ShowCompilerVersion).Do(Current.getCompiler(), false);
passes.get(PassCode.ShowCompilerVersion).Do(Current.getCompiler(), false);
//-----
Vector<DVMConfiguration> configurations = Global.testingServer.db.dvm_configurations.getCheckedOrCurrent();
if (configurations.isEmpty()) {