no message
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user