Skip to content

Commit 8213266

Browse files
authored
Depend on the stdlib's probeCoroutineResumed in ProbesSupport instead of the unconditional reference of 'kotlinx.coroutines.debug.internal' (#4162)
Was accidentally introduced in #4058 Fixes #4152
1 parent 20e462c commit 8213266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ internal actual inline fun <T> probeCoroutineCreated(completion: Continuation<T>
88
kotlin.coroutines.jvm.internal.probeCoroutineCreated(completion)
99

1010
internal actual inline fun <T> probeCoroutineResumed(completion: Continuation<T>) {
11-
kotlinx.coroutines.debug.internal.probeCoroutineResumed(completion)
11+
kotlin.coroutines.jvm.internal.probeCoroutineResumed(completion)
1212
}

0 commit comments

Comments
 (0)