chore: fix typo

This commit is contained in:
Lucaskyy 2022-05-25 22:52:57 +02:00 committed by oSumAtrIX
parent fe56c0cadb
commit 94f3c9116e
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -10,7 +10,7 @@ import app.revanced.patcher.signature.implementation.method.MethodSignature
@Target(AnnotationTarget.CLASS) @Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME) @Retention(AnnotationRetention.RUNTIME)
annotation class MatchingMethod( annotation class MatchingMethod(
val definingClass: String = "L<unspecified-class>", val definingClass: String = "L<unspecified-class>;",
val name: String = "<unspecified-method>" val name: String = "<unspecified-method>"
) )