Skip to content

Commit

Permalink
Added newline to new error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
david-gibbs-ig committed Nov 12, 2023
1 parent 535fad5 commit 8277132
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ private static void generateField(File outputDir,
writeFieldArgConstructor(writer, name, fieldId, baseClassname, isGenerateBigDecimal);
writeEndClassDeclaration(writer);
} catch (Exception e) {
System.err.printf("Exception generating file : %s", file.getName());
System.err.printf("Exception generating file : %s.%n", file.getName());
e.printStackTrace();
}
}
Expand Down Expand Up @@ -548,7 +548,7 @@ private static void generateMessage(File outputDir,

writeEndClassDeclaration(writer);
} catch (Exception e) {
System.err.printf("Exception generating file : %s", file.getName());
System.err.printf("Exception generating file : %s.%n", file.getName());
e.printStackTrace();
}
}
Expand Down

0 comments on commit 8277132

Please sign in to comment.