File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/java Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -165,11 +165,8 @@ public void appendTo(final Appendable out)
165
165
out .append (indent ).append (modifiers ).append ("class " ).append (className ).append ("\n " )
166
166
.append (indent ).append ("{\n " )
167
167
.append (fieldSb )
168
- .append ("\n " )
169
168
.append (privateSb )
170
- .append ("\n " )
171
169
.append (publicSb )
172
- .append ("\n " )
173
170
.append (indent ).append ("}\n " );
174
171
}
175
172
catch (final IOException exception )
@@ -420,7 +417,7 @@ private void generateDecodeListWith(
420
417
final String indent )
421
418
{
422
419
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(" )
424
421
.append (decoderClassName ).append (" decoder)\n " )
425
422
.append (indent ).append ("{\n " )
426
423
.append (indent ).append (INDENT ).append ("List<" ).append (dtoClassName )
You can’t perform that action at this time.
0 commit comments