@@ -58,7 +58,7 @@ public fun <T> StateFlow<T>.distinctUntilChanged(): Flow<T> = noImpl()
58
58
* @suppress
59
59
*/
60
60
@Deprecated(
61
- message = " isActive is resolved into the extension of outer CoroutineScope which is likely to be an error." +
61
+ message = " isActive is resolved into the extension of outer CoroutineScope which is likely to be an error. " +
62
62
" Use currentCoroutineContext().isActive or cancellable() operator instead " +
63
63
" or specify the receiver of isActive explicitly. " +
64
64
" Additionally, flow {} builder emissions are cancellable by default." ,
@@ -72,7 +72,7 @@ public val FlowCollector<*>.isActive: Boolean
72
72
* @suppress
73
73
*/
74
74
@Deprecated(
75
- message = " cancel() is resolved into the extension of outer CoroutineScope which is likely to be an error." +
75
+ message = " cancel() is resolved into the extension of outer CoroutineScope which is likely to be an error. " +
76
76
" Use currentCoroutineContext().cancel() instead or specify the receiver of cancel() explicitly" ,
77
77
level = DeprecationLevel .ERROR ,
78
78
replaceWith = ReplaceWith (" currentCoroutineContext().cancel(cause)" )
@@ -83,7 +83,7 @@ public fun FlowCollector<*>.cancel(cause: CancellationException? = null): Unit =
83
83
* @suppress
84
84
*/
85
85
@Deprecated(
86
- message = " coroutineContext is resolved into the property of outer CoroutineScope which is likely to be an error." +
86
+ message = " coroutineContext is resolved into the property of outer CoroutineScope which is likely to be an error. " +
87
87
" Use currentCoroutineContext() instead or specify the receiver of coroutineContext explicitly" ,
88
88
level = DeprecationLevel .ERROR ,
89
89
replaceWith = ReplaceWith (" currentCoroutineContext()" )
0 commit comments