From 7e856735891757ea9f6cd6662b2f32be12ae6179 Mon Sep 17 00:00:00 2001 From: Vsevolod Tolstopyatov Date: Fri, 28 Jun 2024 23:47:01 +0200 Subject: [PATCH] Depend on the stdlib's probeCoroutineResumed in ProbesSupport instead of the unconditional reference of 'kotlinx.coroutines.debug.internal' Was accidentally introduced in #4058 Fixes #4152 --- kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt b/kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt index a02f06675a..47c8189778 100644 --- a/kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt +++ b/kotlinx-coroutines-core/jvm/src/internal/ProbesSupport.kt @@ -8,5 +8,5 @@ internal actual inline fun probeCoroutineCreated(completion: Continuation kotlin.coroutines.jvm.internal.probeCoroutineCreated(completion) internal actual inline fun probeCoroutineResumed(completion: Continuation) { - kotlinx.coroutines.debug.internal.probeCoroutineResumed(completion) + kotlin.coroutines.jvm.internal.probeCoroutineResumed(completion) }