type arguments generation bug fixed

This commit is contained in:
Gavriil Sitnikov 2017-05-10 18:05:50 +03:00
parent 56aefeeab9
commit 37f2a663ca
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}