1
mirror of https://github.com/revanced/revanced-patcher synced 2025-04-08 12:46:37 +02:00

chore: merge branch dev to main ()

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
CHANGELOG.mdgradle.properties
src/main/kotlin/app/revanced/patcher/fingerprint/method/impl

@ -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)

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

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