no message
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
package ProjectData.Messages;
|
||||
import Common.CurrentAnchestor;
|
||||
import Common.Mode;
|
||||
import Common.Utils.CommonUtils;
|
||||
import Common_old.Constants;
|
||||
import Common_old.Current;
|
||||
import _VisualDVM.Global;
|
||||
import GlobalData.Settings.SettingName;
|
||||
import ProjectData.SapforData.FileObject;
|
||||
import ProjectData.SapforData.FileObjectWithMessages;
|
||||
import Visual_DVM_2021.Passes.PassException;
|
||||
import _VisualDVM.Global;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
@@ -26,7 +27,7 @@ public class Message extends FileObject {
|
||||
setGroup(group_in);
|
||||
if ((group == Constants.parser_group) ||
|
||||
(group == Constants.compiler_group) ||
|
||||
(Current.mode != Current.Mode.Normal)) {
|
||||
(CommonUtils.mode != Mode.Normal)) {
|
||||
value = value_in;
|
||||
} else {
|
||||
value = !Global.getSetting(SettingName.TRANSLATE_MESSAGES).toBoolean() ? value_in : decodeRussianMessage(value_in);
|
||||
|
||||
@@ -691,7 +691,7 @@ public class db_project_info extends DBObject {
|
||||
Utils.forceDeleteWithCheck(file);
|
||||
}
|
||||
public void CreateInterruptFile() throws Exception {
|
||||
FileUtils.write(getInterruptFile(), Current.mode.toString());
|
||||
FileUtils.write(getInterruptFile(), CommonUtils.mode.toString());
|
||||
}
|
||||
public void AppendScenario(String line_in) {
|
||||
Scenario += (line_in + "\n");
|
||||
|
||||
Reference in New Issue
Block a user