mirror of
https://github.com/revanced/smali.git
synced 2025-05-22 19:08:52 +02:00
Throwing UnresolvedClassException if interfaces weren't fully resolved.
This commit is contained in:
parent
5c2353878c
commit
89b28308db
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user