mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
fix: misuse of asm type function
This commit is contained in:
parent
10b5d9e09e
commit
ac4ce489b7
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ public class TypeProxy extends QualifiableProxy {
|
|||
* @return the built {@link TypeProxy}
|
||||
*/
|
||||
public static TypeProxy from(String fqn, int arrayLevel, int modifiers) {
|
||||
return from(Type.getObjectType(nameToDescriptor(fqn, arrayLevel)), modifiers);
|
||||
return from(Type.getType(nameToDescriptor(fqn, arrayLevel)), modifiers);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue