newline before comment

This commit is contained in:
Johannes Frohnmeyer 2022-05-17 06:15:12 +00:00
parent 66084ca5fb
commit ccf30b23e8
1 changed files with 1 additions and 1 deletions

View File

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