fix: fixed uncaught MirroredTypeException

This commit is contained in:
zaaarf 2023-03-16 15:50:39 +01:00
parent 2999aef5a5
commit 6a06713210
No known key found for this signature in database
GPG key ID: AD8563472FD43386
2 changed files with 8 additions and 7 deletions

View file

@ -137,18 +137,20 @@ public class ASTUtils {
/**
* Finds the class name and maps it to the correct format.
*
* @param patchAnn the {@link Patch} annotation containing target class info
* @param finderAnn an annotation containing metadata to fall back on, may be null
* @param finderAnn an annotation containing metadata about the target, may be null
* @param parentFun the function to get the parent from the finderAnn
* @return the fully qualified class name
* @since 0.3.0
*/
private static <T extends Annotation> String findClassName(Patch patchAnn, T finderAnn, Function<T, Class<?>> parentFun) {
String fullyQualifiedName =
finderAnn == null || parentFun.apply(finderAnn) == Object.class
? getClassFullyQualifiedName(patchAnn, Patch::value)
: getClassFullyQualifiedName(finderAnn, parentFun);
String fullyQualifiedName;
if(finderAnn != null) {
fullyQualifiedName = getClassFullyQualifiedName(finderAnn, parentFun);
if(!fullyQualifiedName.equals("java.lang.Object"))
return findClassName(fullyQualifiedName, null);
}
fullyQualifiedName = getClassFullyQualifiedName(patchAnn, Patch::value);
return findClassName(fullyQualifiedName, null);
}

View file

@ -144,7 +144,6 @@ public class ObfuscationMapper {
*/
private final Map<String, String> members;
/**
* The constructor. It takes in the names (obfuscated and non-obfuscated)
* of a class.