mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
fix: NPE on method lookup (#195)
This commit is contained in:
parent
72783a5e74
commit
fcef4342e8
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ abstract class MethodFingerprint(
|
|||
append(returnTypeValue.first())
|
||||
if (parameters != null) appendParameters(parameters)
|
||||
}
|
||||
return methodSignatureLookupMap[key]!!
|
||||
return methodSignatureLookupMap[key] ?: return emptyList()
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue