mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-10 01:29:22 +01:00
fix: TypeProxy.from access modifier
This commit is contained in:
parent
f2d1394bc4
commit
a3f4dafff7
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class TypeProxy extends QualifiableProxy {
|
||||||
* @param modifiers the access modifiers of the desired class
|
* @param modifiers the access modifiers of the desired class
|
||||||
* @return the built {@link TypeProxy}
|
* @return the built {@link TypeProxy}
|
||||||
*/
|
*/
|
||||||
protected static TypeProxy from(String fqn, int arrayLevel, int modifiers) {
|
public static TypeProxy from(String fqn, int arrayLevel, int modifiers) {
|
||||||
return from(Type.getObjectType(nameToDescriptor(fqn, arrayLevel)), modifiers);
|
return from(Type.getObjectType(nameToDescriptor(fqn, arrayLevel)), modifiers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue