type arguments generation bug fixed
This commit is contained in:
parent
56aefeeab9
commit
37f2a663ca
|
|
@ -684,7 +684,7 @@ class ClassObject extends SchemeObject {
|
|||
throw new Exception("Duplicate field name: " + name)
|
||||
}
|
||||
|
||||
if (entry.key.equals("typeVariables")) {
|
||||
if (entry.key.equals("typeArguments")) {
|
||||
for (String typeVariable : entry.value.replace(" ", "").split(",")) {
|
||||
typeVariables.add(typeVariable)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue