Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/Java/src/org/antlr/v4/runtime/RuntimeMetaData.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ public static void checkVersion(String generatingToolVersion, String compileTime
!getMajorMinorVersion(runtimeVersion).equals(getMajorMinorVersion(compileTimeVersion));

if ( runtimeConflictsWithGeneratingTool ) {
System.err.printf("ANTLR Tool version %s used for code generation does not match the current runtime version %s%n",
System.out.printf("ANTLR Tool version %s used for code generation does not match the current runtime version %s%n",
generatingToolVersion, runtimeVersion);
}
if ( runtimeConflictsWithCompileTimeTool ) {
System.err.printf("ANTLR Runtime version %s used for parser compilation does not match the current runtime version %s%n",
System.out.printf("ANTLR Runtime version %s used for parser compilation does not match the current runtime version %s%n",
compileTimeVersion, runtimeVersion);
}
}
Expand Down
Loading