From 86aa108e52ef3ee86a29ddb332ee90c054bff822 Mon Sep 17 00:00:00 2001 From: Marvin Elsen Date: Wed, 9 Oct 2024 19:54:26 +0200 Subject: [PATCH] Fix detekt issues --- .../com/marvinelsen/willow/ui/cells/EntryCellFactory.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/marvinelsen/willow/ui/cells/EntryCellFactory.kt b/src/main/kotlin/com/marvinelsen/willow/ui/cells/EntryCellFactory.kt index d6e49fa..d00633c 100644 --- a/src/main/kotlin/com/marvinelsen/willow/ui/cells/EntryCellFactory.kt +++ b/src/main/kotlin/com/marvinelsen/willow/ui/cells/EntryCellFactory.kt @@ -110,7 +110,9 @@ internal class EntryCell(private val resources: ResourceBundle, private val conf ) ) - val definition = entry.cedictDefinitions.joinToString(separator = " / ") { it.joinToString(separator = "; ") } + val definition = entry.cedictDefinitions.joinToString( + separator = " / " + ) { it.joinToString(separator = "; ") } labelDefinition.text = definition contextMenu = createContextMenuForEntry(entry, resources)