From 30fcd16074606040e13a5a74188c8351ddedc6d7 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 9 Feb 2026 16:23:52 +0600 Subject: [PATCH] remove old SpecialMutableStateFlow and rename its file to MutableRedeliverStateFlow --- ...SpecialMutableStateFlow.kt => MutableRedeliverStateFlow.kt} | 3 --- 1 file changed, 3 deletions(-) rename coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/{SpecialMutableStateFlow.kt => MutableRedeliverStateFlow.kt} (92%) diff --git a/coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/SpecialMutableStateFlow.kt b/coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/MutableRedeliverStateFlow.kt similarity index 92% rename from coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/SpecialMutableStateFlow.kt rename to coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/MutableRedeliverStateFlow.kt index d78a9be9196..6074b354ec5 100644 --- a/coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/SpecialMutableStateFlow.kt +++ b/coroutines/src/commonMain/kotlin/dev/inmo/micro_utils/coroutines/MutableRedeliverStateFlow.kt @@ -65,6 +65,3 @@ open class MutableRedeliverStateFlow( override suspend fun collect(collector: FlowCollector) = sharingFlow.collect(collector) } - -@Deprecated("Renamed to MutableRedeliverStateFlow", ReplaceWith("MutableRedeliverStateFlow")) -typealias SpecialMutableStateFlow = MutableRedeliverStateFlow