Fixed code

This commit is contained in:
Luca Frosini 2021-01-20 15:54:20 +01:00
parent 502ba899f7
commit d490efab78
1 changed files with 3 additions and 1 deletions

View File

@ -309,11 +309,13 @@ public class PropertyTypeName {
stringBuffer.append(BaseType.STRING.toString());
stringBuffer.append(",");
}
if(genericBaseType!=null) {
if(genericClassName != null) {
stringBuffer.append(genericClassName);
}else {
stringBuffer.append(genericBaseType.toString());
}
stringBuffer.append(">");
break;