We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88234c6 commit 7463f87Copy full SHA for 7463f87
kotlinx-coroutines-core/common/src/CancellableContinuationImpl.kt
@@ -114,7 +114,6 @@ internal open class CancellableContinuationImpl<in T>(
114
if (checkCompleted()) return
115
if (parentHandle !== null) return // fast path 2 -- was already initialized
116
val parent = delegate.context[Job] ?: return // fast path 3 -- don't do anything without parent
117
- parent.start() // make sure the parent is started
118
val handle = parent.invokeOnCompletion(
119
onCancelling = true,
120
handler = ChildContinuation(parent, this).asHandler
0 commit comments