Skip to content

Commit

Permalink
Apply changes from ktLintFormat
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
RBusarow authored and github-actions[bot] committed Dec 6, 2024
1 parent 79177e6 commit f6ec466
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit f6ec466

Please sign in to comment.