diff --git a/java_tools/ConfigDefinition.jar b/java_tools/ConfigDefinition.jar index e6c13c508b..c93845675b 100644 Binary files a/java_tools/ConfigDefinition.jar and b/java_tools/ConfigDefinition.jar differ diff --git a/java_tools/enum2string.jar b/java_tools/enum2string.jar index f70c09f09c..c2fdcc2e93 100644 Binary files a/java_tools/enum2string.jar and b/java_tools/enum2string.jar differ diff --git a/java_tools/enum_to_string/src/main/java/com/rusefi/EnumToString.java b/java_tools/enum_to_string/src/main/java/com/rusefi/EnumToString.java index eff4cf916f..b5012653ca 100644 --- a/java_tools/enum_to_string/src/main/java/com/rusefi/EnumToString.java +++ b/java_tools/enum_to_string/src/main/java/com/rusefi/EnumToString.java @@ -20,13 +20,6 @@ public class EnumToString { /** * same header for .cpp and .h */ - private final static StringBuilder commonFilesHeader = new StringBuilder("// by enum2string.jar tool " + - "on " + new Date() + "\n" + - "// see also gen_config_and_enums.bat\n" + - "\n" + - "\n" + - "\n"); - private final static StringBuilder headerFileContent = new StringBuilder(); public final static String KEY_ENUM_INPUT_FILE = "-enumInputFile"; @@ -50,7 +43,6 @@ public class EnumToString { state.outputData(enumsReader); - state.cppFileContent.insert(0, commonFilesHeader.toString()); state.cppFileContent.insert(0, state.includesSection); headerFileContent.insert(0, state.includesSection); @@ -58,7 +50,6 @@ public class EnumToString { SystemOut.println("includesSection:\n" + state.includesSection + "end of includesSection\n"); state.cppFileContent.insert(0, "#include \"global.h\"\n"); - headerFileContent.insert(0, commonFilesHeader); new File(outputPath).mkdirs(); state.writeCppAndHeaderFiles(outputPath + File.separator + "auto_generated_" +