Skip to content

Commit f727657

Browse files
authored
Remove InternalCoroutinesApi from overridden releaseInterceptedContinuation. (#2773)
Otherwise compilation fails on 1.5.30 due to KT-45844
1 parent 3d62f64 commit f727657

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

kotlinx-coroutines-core/common/src/CoroutineDispatcher.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ public abstract class CoroutineDispatcher :
9999
public final override fun <T> interceptContinuation(continuation: Continuation<T>): Continuation<T> =
100100
DispatchedContinuation(this, continuation)
101101

102-
@InternalCoroutinesApi
103102
public override fun releaseInterceptedContinuation(continuation: Continuation<*>) {
104103
/*
105104
* Unconditional cast is safe here: we only return DispatchedContinuation from `interceptContinuation`,

0 commit comments

Comments
 (0)