We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79177e6 commit f6ec466Copy full SHA for f6ec466
workflow-core/src/commonMain/kotlin/com/squareup/workflow1/WorkflowIdentifier.kt
@@ -105,10 +105,12 @@ public class WorkflowIdentifier internal constructor(
105
*
106
*/
107
override fun toString(): String {
108
- return cachedToString ?: (description?.invoke()
109
- ?: proxiedIdentifiers
110
- .joinToString { it.typeName }
111
- .let { "WorkflowIdentifier($it)" })
+ return cachedToString ?: (
+ description?.invoke()
+ ?: proxiedIdentifiers
+ .joinToString { it.typeName }
112
+ .let { "WorkflowIdentifier($it)" }
113
+ )
114
.also {
115
cachedToString = it
116
}
0 commit comments