no message

This commit is contained in:
2024-10-07 14:22:52 +03:00
parent 6b1576461d
commit 61fc37b574
173 changed files with 960 additions and 1526 deletions

View File

@@ -1,7 +1,7 @@
package Visual_DVM_2021.Passes.All;
import Common.Utils.CommonUtils;
import Common_old.Current;
import Common_old.UI.Windows.Dialog.Dialog;
import Common_old.Utils.Utils;
import GlobalData.Compiler.Compiler;
import GlobalData.Compiler.CompilerType;
import GlobalData.CompilerEnvironment.CompilerEnvironment;
@@ -54,7 +54,7 @@ public class PickCompilerEnvironmentsForTesting extends Pass_2021<String> {
Vector<String> envs = new Vector<>();
for (CompilerEnvironment compilerEnv : compiler.environments.Data.values()) {
if (compilerEnv.isSelected())
envs.add(compilerEnv.name + "=" + Utils.DQuotes(compilerEnv.value));
envs.add(compilerEnv.name + "=" + CommonUtils.DQuotes(compilerEnv.value));
}
target = String.join(" ", envs);
}