From fd690acd61e6f3cf37f67b6b6d90612c698c2b48 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 20 Jun 2022 02:21:43 +0200 Subject: [PATCH] refactor: add internal attribute to `signatures` field --- .../app/revanced/patcher/patch/implementation/BytecodePatch.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/patch/implementation/BytecodePatch.kt b/src/main/kotlin/app/revanced/patcher/patch/implementation/BytecodePatch.kt index 7671b8e..a2ff07d 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/implementation/BytecodePatch.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/implementation/BytecodePatch.kt @@ -9,5 +9,5 @@ import app.revanced.patcher.signature.implementation.method.MethodSignature * @param signatures A list of [MethodSignature] this patch relies on. */ abstract class BytecodePatch( - val signatures: Iterable + internal val signatures: Iterable ) : Patch() \ No newline at end of file