refactor: Remove redundant curly braces

This commit is contained in:
oSumAtrIX 2023-09-13 02:12:27 +02:00
parent 29bc0e8df8
commit 05878a6e06
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 1 additions and 1 deletions

View File

@ -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 ->