Skip to content

Commit 3c1d10e

Browse files
committed
Merge pull request aeron-io#225 from pavlobaron/master
fixed wrong class name generation for fixed length strings
2 parents 3992411 + e57bf39 commit 3c1d10e

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)