Skip to content

Commit e43cffc

Browse files
authored
Merge branch 'master' into feature/gen-display-no-alloc
2 parents de9384e + 391527a commit e43cffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3284,7 +3284,7 @@ private void appendDecoderDisplay(
32843284
append(sb, indent, "builder.append(\"" + varDataName + Separators.KEY_VALUE + "\");");
32853285
if (null == characterEncoding)
32863286
{
3287-
append(sb, indent, "builder.append(" + varDataName + "Length() + \" bytes of raw data\");");
3287+
append(sb, indent, "builder.append(" + varDataName + "Length()).append(\" bytes of raw data\");");
32883288
append(sb, indent,
32893289
"parentMessage.limit(parentMessage.limit() + " + varDataName + "HeaderLength() + " +
32903290
varDataName + "Length());");

0 commit comments

Comments
 (0)