Skip to content

Commit

Permalink
fix: mutability of local variable modified
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX authored Jun 23, 2022
1 parent e3bf367 commit 0e87ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/patcher/Patcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Patcher(private val options: PatcherOptions) {
callback: (File) -> Unit
) {
for (file in files) {
val modified = false
var modified = false
for (classDef in MultiDexIO.readDexFile(true, file, NAMER, null, null).classes) {
val type = classDef.type

Expand Down

0 comments on commit 0e87ef5

Please sign in to comment.