diff --git a/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java b/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java index 9f613b0..7be1eb3 100644 --- a/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java +++ b/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java @@ -73,7 +73,7 @@ public class TypeProxy extends QualifiableProxy { * @param modifiers the access modifiers of the desired class * @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); }