refactor: add internal attribute to signatures field

This commit is contained in:
oSumAtrIX 2022-06-20 02:21:43 +02:00
parent e698b02bf6
commit fd690acd61
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -9,5 +9,5 @@ import app.revanced.patcher.signature.implementation.method.MethodSignature
* @param signatures A list of [MethodSignature] this patch relies on. * @param signatures A list of [MethodSignature] this patch relies on.
*/ */
abstract class BytecodePatch( abstract class BytecodePatch(
val signatures: Iterable<MethodSignature> internal val signatures: Iterable<MethodSignature>
) : Patch<BytecodeData>() ) : Patch<BytecodeData>()