Skip to content

Commit

Permalink
refactor: Remove redundant curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Sep 15, 2023
1 parent 29bc0e8 commit 05878a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ internal object PatchCommand : Runnable {
val formattedPatchName = patchName.format()

val explicitlyExcluded = formattedExcludedPatches.contains(formattedPatchName)
if (explicitlyExcluded) return@patch logger.info("Excluding ${patchName}")
if (explicitlyExcluded) return@patch logger.info("Excluding $patchName")

// Make sure the patch is compatible with the supplied APK files package name and version.
patch.compatiblePackages?.let { packages ->
Expand Down

0 comments on commit 05878a6

Please sign in to comment.