From 05878a6e06201c0557fb6b841238e80c2ddba28b Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 13 Sep 2023 02:12:27 +0200 Subject: [PATCH] refactor: Remove redundant curly braces --- src/main/kotlin/app/revanced/cli/command/PatchCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt index c446a2c..9bcba9a 100644 --- a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt @@ -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 ->