chore: merge branch dev to main (#196)

This commit is contained in:
oSumAtrIX 2023-07-01 01:54:46 +02:00
commit 2c8565508e
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
## [11.0.3-dev.1](https://github.com/revanced/revanced-patcher/compare/v11.0.2...v11.0.3-dev.1) (2023-06-28)
### Bug Fixes
* NPE on method lookup ([#195](https://github.com/revanced/revanced-patcher/issues/195)) ([fcef434](https://github.com/revanced/revanced-patcher/commit/fcef4342e8bde73945e8315aef6337cc8a8d8572))
## [11.0.2](https://github.com/revanced/revanced-patcher/compare/v11.0.1...v11.0.2) (2023-06-27)

View file

@ -1,2 +1,2 @@
kotlin.code.style = official
version = 11.0.2
version = 11.0.3-dev.1

View file

@ -207,7 +207,7 @@ abstract class MethodFingerprint(
append(returnTypeValue.first())
if (parameters != null) appendParameters(parameters)
}
return methodSignatureLookupMap[key]!!
return methodSignatureLookupMap[key] ?: return emptyList()
}
/**