From 94f3c9116e0c23710e3716e9877a6c71b36c9f42 Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Wed, 25 May 2022 22:52:57 +0200 Subject: [PATCH] chore: fix typo --- .../implementation/method/annotation/MethodSignatureMetadata.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/signature/implementation/method/annotation/MethodSignatureMetadata.kt b/src/main/kotlin/app/revanced/patcher/signature/implementation/method/annotation/MethodSignatureMetadata.kt index adcd370..f9451a1 100644 --- a/src/main/kotlin/app/revanced/patcher/signature/implementation/method/annotation/MethodSignatureMetadata.kt +++ b/src/main/kotlin/app/revanced/patcher/signature/implementation/method/annotation/MethodSignatureMetadata.kt @@ -10,7 +10,7 @@ import app.revanced.patcher.signature.implementation.method.MethodSignature @Target(AnnotationTarget.CLASS) @Retention(AnnotationRetention.RUNTIME) annotation class MatchingMethod( - val definingClass: String = "L", + val definingClass: String = "L;", val name: String = "" )