Skip to content

Commit

Permalink
~cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Apr 24, 2020
1 parent 2ea43df commit 1f29820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions kotlinx-coroutines-core/jvm/src/debug/AgentPremain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ internal object AgentPremain {
protectionDomain: ProtectionDomain,
classfileBuffer: ByteArray?
): ByteArray? {
val name = className.replace("/", ".")
if (name != "kotlin.coroutines.jvm.internal.DebugProbesKt") {
if (className != "kotlin/coroutines/jvm/internal/DebugProbesKt") {
return null
}
/*
Expand Down
1 change: 1 addition & 0 deletions kotlinx-coroutines-debug/src/CoroutineInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import kotlin.coroutines.jvm.internal.*
/**
* Class describing coroutine info such as its context, state and stacktrace.
*/
@ExperimentalCoroutinesApi
public class CoroutineInfo internal constructor(delegate: DebugCoroutineInfo) {
/**
* [Coroutine context][coroutineContext] of the coroutine
Expand Down

0 comments on commit 1f29820

Please sign in to comment.