mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-30 06:31:02 +00:00
17 lines
531 B
Kotlin
17 lines
531 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].
|
|
*/
|
|
@Deprecated(
|
|
message = "Use the property instead.",
|
|
replaceWith = ReplaceWith("this.fuzzyPatternScanMethod"),
|
|
)
|
|
val MethodFingerprint.fuzzyPatternScanMethod
|
|
get() = this.fuzzyPatternScanMethod
|
|
}
|