Skip to content

Commit 8277132

Browse files
Added newline to new error messages
1 parent 535fad5 commit 8277132

File tree

1 file changed

+2
-2
lines changed
  • quickfixj-from-fix-orchestra-repository/quickfixj-from-fix-orchestra-generator/src/main/java/org/quickfixj/orchestra

1 file changed

+2
-2
lines changed

quickfixj-from-fix-orchestra-repository/quickfixj-from-fix-orchestra-generator/src/main/java/org/quickfixj/orchestra/CodeGeneratorJ.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ private static void generateField(File outputDir,
463463
writeFieldArgConstructor(writer, name, fieldId, baseClassname, isGenerateBigDecimal);
464464
writeEndClassDeclaration(writer);
465465
} catch (Exception e) {
466-
System.err.printf("Exception generating file : %s", file.getName());
466+
System.err.printf("Exception generating file : %s.%n", file.getName());
467467
e.printStackTrace();
468468
}
469469
}
@@ -548,7 +548,7 @@ private static void generateMessage(File outputDir,
548548

549549
writeEndClassDeclaration(writer);
550550
} catch (Exception e) {
551-
System.err.printf("Exception generating file : %s", file.getName());
551+
System.err.printf("Exception generating file : %s.%n", file.getName());
552552
e.printStackTrace();
553553
}
554554
}

0 commit comments

Comments
 (0)