second WBO channel logging #6306

multi-line fix
This commit is contained in:
Andrey 2024-03-30 10:14:02 -04:00 committed by rusefillc
parent 7ce3b57f67
commit b441b6cf13
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,6 @@ public class StateDictionaryGenerator implements LiveDataProcessor.EntryHandler
append(name, javaName, cppFileName, Integer.toString(i));
}
}
content.append(");\n");
}
private void append(String name, String javaName, String cppFileName, String suffix) {
@ -37,6 +36,7 @@ public class StateDictionaryGenerator implements LiveDataProcessor.EntryHandler
content.append(FileJavaFieldsConsumer.remoteExtension(javaName)).append(".VALUES, ");
content.append(quote(cppFileName));
content.append(");\n");
}
public String getCompleteClass() {