mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-27 13:11:03 +00:00
18 lines
577 B
Kotlin
18 lines
577 B
Kotlin
package app.revanced.patcher.extensions
|
|
|
|
import app.revanced.patcher.fingerprint.MethodFingerprint
|
|
import app.revanced.patcher.fingerprint.annotation.FuzzyPatternScanMethod
|
|
|
|
object MethodFingerprintExtensions {
|
|
/**
|
|
* The [FuzzyPatternScanMethod] annotation of a [MethodFingerprint].
|
|
*/
|
|
@Suppress("EXTENSION_SHADOWED_BY_MEMBER")
|
|
@Deprecated(
|
|
message = "Use the property instead.",
|
|
replaceWith = ReplaceWith("this.fuzzyPatternScanMethod"),
|
|
)
|
|
val MethodFingerprint.fuzzyPatternScanMethod
|
|
get() = this.fuzzyPatternScanMethod
|
|
}
|