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,6 +1,6 @@
package Visual_DVM_2021.Passes.All;
import Common.CommonConstants;
import Common.CurrentAnchestor;
import Common.Current_;
import Common.Utils.CommonUtils;
import _VisualDVM.Current;
import Common.Visual.Windows.Dialog.Dialog;
@@ -11,12 +11,12 @@ import _VisualDVM.GlobalData.CompilerEnvironment.UI.CompilerEnvironmentsFields;
import _VisualDVM.GlobalData.EnvironmentValue.EnvironmentValue;
import _VisualDVM.GlobalData.GlobalDatabase;
import _VisualDVM.GlobalData.RunConfiguration.RunConfiguration;
import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.Pass_2021;
import Visual_DVM_2021.Passes.PassCode;
import Visual_DVM_2021.Passes.Pass;
import javax.swing.*;
import java.util.LinkedHashMap;
public class PickCompilerEnvironments extends Pass_2021<String> {
public class PickCompilerEnvironments extends Pass<String> {
Compiler compiler = null;
@Override
public String getIconPath() {
@@ -29,7 +29,7 @@ public class PickCompilerEnvironments extends Pass_2021<String> {
//-
@Override
protected boolean canStart(Object... args) throws Exception {
if (CurrentAnchestor.Check(Log, Current.RunConfiguration)) {
if (Current_.Check(Log, Current.RunConfiguration)) {
RunConfiguration configuration = Current.getRunConfiguration();
if (configuration.compiler_id == CommonConstants.Nan) {
Log.Writeln_("Отсутвует DVM компилятор, связанный с текущей конфигурацией запуска.\n" +
@@ -44,7 +44,7 @@ public class PickCompilerEnvironments extends Pass_2021<String> {
return false;
}
//-
if (!(compiler.helpLoaded || passes.get(PassCode_2021.ShowCompilerHelp).Do(compiler, false)))
if (!(compiler.helpLoaded || passes.get(PassCode.ShowCompilerHelp).Do(compiler, false)))
return false;
//-
Dialog<String, CompilerEnvironmentsFields> dialog =