From cb78c5a86f3d2a6392252728869dcff6cc970cbf Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Thu, 31 Mar 2022 22:46:12 +0200 Subject: [PATCH] style: reformat code --- src/main/kotlin/app/revanced/patcher/Patcher.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patcher/Patcher.kt b/src/main/kotlin/app/revanced/patcher/Patcher.kt index 7f54d8f..c103234 100644 --- a/src/main/kotlin/app/revanced/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/patcher/Patcher.kt @@ -23,12 +23,12 @@ class Patcher( input: File, private val output: File, signatures: Array, - ) { +) { private val cache: Cache private val patches = mutableSetOf() init { - val dexFile = MultiDexIO.readDexFile(true, input, BasicDexFileNamer(), Opcodes.getDefault(), null) + val dexFile = MultiDexIO.readDexFile(true, input, BasicDexFileNamer(), null, null) cache = Cache(dexFile.classes, SignatureResolver(dexFile.classes, signatures).resolve()) }