mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-06-12 05:07:46 +02:00
fix: NPE on method lookup (#195)
This commit is contained in:

committed by
GitHub

parent
72783a5e74
commit
fcef4342e8
@ -207,7 +207,7 @@ abstract class MethodFingerprint(
|
||||
append(returnTypeValue.first())
|
||||
if (parameters != null) appendParameters(parameters)
|
||||
}
|
||||
return methodSignatureLookupMap[key]!!
|
||||
return methodSignatureLookupMap[key] ?: return emptyList()
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user