Skip to content

Commit

Permalink
Changed support for constants in repeating groups to use instance ini…
Browse files Browse the repository at this point in the history
…tialisation rather than static initialisation to address issue #3.
  • Loading branch information
mjpt777 committed Nov 8, 2013
1 parent be46659 commit 56b5441
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ private CharSequence generateConstPropertyMethods(final String propertyName, fin

sb.append(String.format(
"\n" +
indent + " private static final byte[] %sValue = {%s};\n",
indent + " private final byte[] %sValue = {%s};\n",
propertyName,
values
));
Expand Down

0 comments on commit 56b5441

Please sign in to comment.