From f6ec466ac5129ed082f89212162cb5cefdb60ba7 Mon Sep 17 00:00:00 2001 From: RBusarow Date: Fri, 6 Dec 2024 02:28:15 +0000 Subject: [PATCH] Apply changes from ktLintFormat Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../com/squareup/workflow1/WorkflowIdentifier.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt b/workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt index fe2ce70c7..56e744b84 100644 --- a/workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt +++ b/workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt @@ -105,10 +105,12 @@ public class WorkflowIdentifier internal constructor( * */ override fun toString(): String { - return cachedToString ?: (description?.invoke() - ?: proxiedIdentifiers - .joinToString { it.typeName } - .let { "WorkflowIdentifier($it)" }) + return cachedToString ?: ( + description?.invoke() + ?: proxiedIdentifiers + .joinToString { it.typeName } + .let { "WorkflowIdentifier($it)" } + ) .also { cachedToString = it }