We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af4e28 commit c011057Copy full SHA for c011057
sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/java/JavaGenerator.java
@@ -3393,10 +3393,13 @@ private int writeTokenDisplay(
3393
break;
3394
3395
case BEGIN_ENUM:
3396
- case BEGIN_SET:
3397
append(sb, indent, "builder.append(" + fieldName + "());");
3398
3399
+ case BEGIN_SET:
3400
+ append(sb, indent, fieldName + "().appendTo(builder);");
3401
+ break;
3402
+
3403
case BEGIN_COMPOSITE:
3404
{
3405
final String typeName = formatClassName(decoderName(typeToken.applicableTypeName()));
0 commit comments