Skip to content

Commit

Permalink
refactor: fix typo (ReVanced#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
n0k0m3 committed Jul 19, 2022
1 parent 5af2f10 commit 5f2bccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/app/revanced/utils/patcher/Patcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fun Patcher.addPatchesFiltered() {
val args = MainCommand.args.sArgs?.pArgs!!

if (args.excludedPatches.contains(patchName)) {
logger.info("$prefix: Explicitely excluded")
logger.info("$prefix: Explicitly excluded")
return@patch
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
logger.info("$prefix: Not explicitly included")
Expand Down Expand Up @@ -75,4 +75,4 @@ fun Patcher.mergeFiles() {
this.addFiles(args.sArgs?.pArgs!!.mergeFiles) { file ->
logger.info("Merging $file")
}
}
}

0 comments on commit 5f2bccc

Please sign in to comment.