mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-02 05:54:26 +02:00
fix: MethodSignature#resolved throwing an exception
This commit is contained in:
parent
bca948658e
commit
c612676543
@ -30,7 +30,11 @@ class MethodSignature(
|
|||||||
}
|
}
|
||||||
val resolved: Boolean
|
val resolved: Boolean
|
||||||
get() {
|
get() {
|
||||||
return result != null
|
var resolved = false
|
||||||
|
try {
|
||||||
|
resolved = result != null
|
||||||
|
} catch (_: Exception) {}
|
||||||
|
return resolved
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user