Use the platform-specific line separator

See gh-11674
This commit is contained in:
Johnny Lim 2018-01-18 23:58:17 +09:00 committed by Stephane Nicoll
parent 330881db78
commit 97a51ddcaa

View File

@ -75,13 +75,13 @@ class DuplicateJsonObjectContextCustomizerFactory implements ContextCustomizerFa
}
private void logDuplicateJsonObjectsWarning(List<URL> jsonObjects) {
StringBuilder message = new StringBuilder("\n\nFound multiple occurrences of"
+ " org.json.JSONObject on the class path:\n\n");
StringBuilder message = new StringBuilder(String.format("%n%nFound multiple occurrences of"
+ " org.json.JSONObject on the class path:%n%n"));
for (URL jsonObject : jsonObjects) {
message.append("\t" + jsonObject + "\n");
message.append(String.format("\t%s%n", jsonObject));
}
message.append("\nYou may wish to exclude one of them to ensure"
+ " predictable runtime behaviour\n");
message.append(String.format("%nYou may wish to exclude one of them to ensure"
+ " predictable runtime behavior%n"));
this.logger.warn(message);
}