Skip to content

Commit e57bf39

Browse files
committed
fixed wrong class name generation for fixed length strings
1 parent 3992411 commit e57bf39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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
@@ -982,7 +982,7 @@ private CharSequence generateArrayProperty(
982982
indent + " CodecUtil.charsPut(buffer, this.offset + %d, src, srcOffset, length);\n" +
983983
indent + " return this;\n" +
984984
indent + " }\n",
985-
containingClassName,
985+
formatClassName(containingClassName),
986986
toUpperFirstChar(propertyName),
987987
fieldLength,
988988
offset

0 commit comments

Comments
 (0)