Fix issues with generics with generics
This commit is contained in:
parent
7cfb48c2ed
commit
2c6840ac26
@ -67,7 +67,7 @@ public class VarHelper {
|
||||
}
|
||||
|
||||
while (type.contains( "<" )) {
|
||||
type = type.substring(0, type.indexOf('<')) + type.substring(type.indexOf('>') + 1);
|
||||
type = type.substring(0, type.indexOf('<')) + type.substring(type.lastIndexOf('>') + 1);
|
||||
}
|
||||
type = type.replace( '.', '_' );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user