Update PECodeGenerator.java

This commit is contained in:
Jens Kristian Villadsen 2024-11-19 08:05:19 +01:00 committed by GitHub
parent a26fcf528a
commit 57301be1c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ public class PECodeGenerator {
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()) {