Skip to content

Commit

Permalink
[Java] Tidy up spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachBray committed May 15, 2024
1 parent e4479b2 commit eacdb50
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,8 @@ public void appendTo(final Appendable out)
out.append(indent).append(modifiers).append("class ").append(className).append("\n")
.append(indent).append("{\n")
.append(fieldSb)
.append("\n")
.append(privateSb)
.append("\n")
.append(publicSb)
.append("\n")
.append(indent).append("}\n");
}
catch (final IOException exception)
Expand Down Expand Up @@ -420,7 +417,7 @@ private void generateDecodeListWith(
final String indent)
{
classBuilder.appendPublic().append("\n")
.append(indent).append("static List<").append(dtoClassName).append("> decodeManyWith(")
.append(indent).append("public static List<").append(dtoClassName).append("> decodeManyWith(")
.append(decoderClassName).append(" decoder)\n")
.append(indent).append("{\n")
.append(indent).append(INDENT).append("List<").append(dtoClassName)
Expand Down

0 comments on commit eacdb50

Please sign in to comment.