newline before comment

This commit is contained in:
Johannes Frohnmeyer 2022-05-17 06:15:12 +00:00
parent 66084ca5fb
commit ccf30b23e8

View File

@ -297,8 +297,8 @@ public class JsonWriter implements Closeable, Flushable {
out.append("/* ").append(String.join(" / ", parts)).append(" */"); out.append("/* ").append(String.join(" / ", parts)).append(" */");
} else { } else {
for (String s : parts) { for (String s : parts) {
out.append("// ").append(s);
newline(); newline();
out.append("// ").append(s);
} }
} }
return this; return this;