diff options
author | 2024-12-19 14:21:30 -0500 | |
---|---|---|
committer | 2025-01-17 13:02:59 -0800 | |
commit | 38604d64e610e6454f868d7c7f2168950722a47c (patch) | |
tree | d9c97c33901f21c9382d75f6ab3e21f7866a0722 | |
parent | cedce7778150f8781afcf4787b533d8fc9b07df1 (diff) |
Remove ExperimentalCoroutinesApi opt-ins from utils/
Flag: EXEMPT mechanical cleanup
Test: presubmit
Change-Id: I48111b045bfe6a61bb93bf814b39abb62cb40c3a
-rw-r--r-- | packages/SystemUI/utils/src/com/android/systemui/utils/coroutines/flow/LatestConflated.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/utils/src/com/android/systemui/utils/coroutines/flow/LatestConflated.kt b/packages/SystemUI/utils/src/com/android/systemui/utils/coroutines/flow/LatestConflated.kt index 5f8c66078483..4cfb7d5f6157 100644 --- a/packages/SystemUI/utils/src/com/android/systemui/utils/coroutines/flow/LatestConflated.kt +++ b/packages/SystemUI/utils/src/com/android/systemui/utils/coroutines/flow/LatestConflated.kt @@ -14,12 +14,11 @@ * limitations under the License. */ -@file:OptIn(ExperimentalCoroutinesApi::class, ExperimentalTypeInference::class) +@file:OptIn(ExperimentalTypeInference::class) package com.android.systemui.utils.coroutines.flow import kotlin.experimental.ExperimentalTypeInference -import kotlinx.coroutines.ExperimentalCoroutinesApi import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.FlowCollector import kotlinx.coroutines.flow.conflate |