no message

This commit is contained in:
2024-10-11 00:00:30 +03:00
parent a11b7711f7
commit f317ab1aa1
341 changed files with 1866 additions and 1688 deletions

View File

@@ -1,7 +1,7 @@
package Visual_DVM_2021.Passes.All;
import Common.CommonConstants;
import Common.Current_;
import Common.Utils.CommonUtils;
import Common.Utils.Utils_;
import _VisualDVM.Current;
import Common.Visual.Windows.Dialog.Dialog;
import _VisualDVM.GlobalData.Compiler.Compiler;
@@ -82,13 +82,13 @@ public class PickCompilerEnvironments extends Pass<String> {
confEnv.run_configuration_id = Current.getRunConfiguration().id;
confEnv.name = compilerEnv.name;
confEnv.value = compilerEnv.value;
CommonUtils.db.Insert(confEnv);
Utils_.db.Insert(confEnv);
} else {
confEnv = ((GlobalDatabase)CommonUtils.db).environmentValues.getEnvByName(compilerEnv.name);
confEnv = ((GlobalDatabase) Utils_.db).environmentValues.getEnvByName(compilerEnv.name);
if (confEnv != null) {
confEnv.name = compilerEnv.name;
confEnv.value = compilerEnv.value;
CommonUtils.db.Update(confEnv);
Utils_.db.Update(confEnv);
}
}
}
@@ -96,6 +96,6 @@ public class PickCompilerEnvironments extends Pass<String> {
}
@Override
protected void showDone() throws Exception {
((GlobalDatabase)CommonUtils.db).environmentValues.ShowUI();
((GlobalDatabase) Utils_.db).environmentValues.ShowUI();
}
}