Skip to content

Commit 6e0234b

Browse files
committed
[Java] Tidy up spacing.
1 parent 60bd119 commit 6e0234b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/java/JavaDtoGenerator.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,8 @@ public void appendTo(final Appendable out)
165165
out.append(indent).append(modifiers).append("class ").append(className).append("\n")
166166
.append(indent).append("{\n")
167167
.append(fieldSb)
168-
.append("\n")
169168
.append(privateSb)
170-
.append("\n")
171169
.append(publicSb)
172-
.append("\n")
173170
.append(indent).append("}\n");
174171
}
175172
catch (final IOException exception)
@@ -420,7 +417,7 @@ private void generateDecodeListWith(
420417
final String indent)
421418
{
422419
classBuilder.appendPublic().append("\n")
423-
.append(indent).append("static List<").append(dtoClassName).append("> decodeManyWith(")
420+
.append(indent).append("public static List<").append(dtoClassName).append("> decodeManyWith(")
424421
.append(decoderClassName).append(" decoder)\n")
425422
.append(indent).append("{\n")
426423
.append(indent).append(INDENT).append("List<").append(dtoClassName)

0 commit comments

Comments
 (0)