From 8a2e250f14ec6cb5d827cf9c984ddc679fb25f24 Mon Sep 17 00:00:00 2001 From: Thorsten Bus Date: Mon, 11 May 2026 10:47:10 +0200 Subject: [PATCH] fix(ccli): remove empty if block in CcliPasteParser constructor --- app/Services/CcliPasteParser.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Services/CcliPasteParser.php b/app/Services/CcliPasteParser.php index 83fee56..9baed42 100644 --- a/app/Services/CcliPasteParser.php +++ b/app/Services/CcliPasteParser.php @@ -14,8 +14,6 @@ public function __construct( private readonly ?Closure $sectionDetector = null, private readonly ?Closure $metadataDetector = null, ) { - if ($sectionDetector !== null || $metadataDetector !== null) { - } } public function parse(string $rawText): ParsedCcliSong