Skip to content

Commit f6ec466

Browse files
RBusarowgithub-actions[bot]
authored andcommitted
Apply changes from ktLintFormat
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 79177e6 commit f6ec466

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt

+6-4
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ public class WorkflowIdentifier internal constructor(
105105
*
106106
*/
107107
override fun toString(): String {
108-
return cachedToString ?: (description?.invoke()
109-
?: proxiedIdentifiers
110-
.joinToString { it.typeName }
111-
.let { "WorkflowIdentifier($it)" })
108+
return cachedToString ?: (
109+
description?.invoke()
110+
?: proxiedIdentifiers
111+
.joinToString { it.typeName }
112+
.let { "WorkflowIdentifier($it)" }
113+
)
112114
.also {
113115
cachedToString = it
114116
}

0 commit comments

Comments
 (0)