Skip to content

Commit

Permalink
style: reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas authored and oSumAtrIX committed Jun 5, 2022
1 parent 9991f39 commit cb78c5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/app/revanced/patcher/Patcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ class Patcher(
input: File,
private val output: File,
signatures: Array<MethodSignature>,
) {
) {
private val cache: Cache
private val patches = mutableSetOf<Patch>()

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())
}

Expand Down

0 comments on commit cb78c5a

Please sign in to comment.