mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
Throwing UnresolvedClassException if interfaces weren't fully resolved.
This commit is contained in:
@ -141,6 +141,10 @@ public class ClassProto implements TypeProto {
|
||||
interfacesFullyResolved = false;
|
||||
}
|
||||
|
||||
if (!interfacesFullyResolved) {
|
||||
throw new UnresolvedClassException("Interfaces for class %s not fully resolved", getType());
|
||||
}
|
||||
|
||||
return interfaces;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user