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)
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 )
You can’t perform that action at this time.
0 commit comments