Skip to content

Commit

Permalink
Fix for R5
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiddo committed Nov 19, 2024
1 parent 57301be commit 4ee6bb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private void defineField(PEDefinition source, PEDefinition field) {
type = Utilities.capitalize(field.types().get(0).getName()+"Type");
ptype = getPrimitiveType(sd);
} else {
type = field.types().get(0).getName();
type = Utilities.javaTokenize(field.types().get(0).getName(), true);
}
String ltype = type;
if (field.isList()) {
Expand Down

0 comments on commit 4ee6bb4

Please sign in to comment.