From 83056decf0fa3031c12927900e200e8bba091ddf Mon Sep 17 00:00:00 2001 From: Yoonseop Shin <50787869+sys09270883@users.noreply.github.com> Date: Sun, 19 Dec 2021 19:36:15 +0900 Subject: [PATCH] Fix indentation in Transform.kt (#3100) --- kotlinx-coroutines-core/common/src/flow/operators/Transform.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt b/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt index 9b97193227..35fc96d55d 100644 --- a/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt +++ b/kotlinx-coroutines-core/common/src/flow/operators/Transform.kt @@ -45,7 +45,7 @@ public fun Flow.filterNotNull(): Flow = transform { value * Returns a flow containing the results of applying the given [transform] function to each value of the original flow. */ public inline fun Flow.map(crossinline transform: suspend (value: T) -> R): Flow = transform { value -> - return@transform emit(transform(value)) + return@transform emit(transform(value)) } /**