mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-19 09:23:56 +00: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())
|
append(returnTypeValue.first())
|
||||||
if (parameters != null) appendParameters(parameters)
|
if (parameters != null) appendParameters(parameters)
|
||||||
}
|
}
|
||||||
return methodSignatureLookupMap[key]!!
|
return methodSignatureLookupMap[key] ?: return emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user