Skip to content

Commit ec05e8a

Browse files
LouisCADqwwdfsad
authored andcommitted
Remove no longer needed warning suppression
Closes #482
1 parent c22b645 commit ec05e8a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/kotlinx-coroutines-core/src/EventLoop.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ internal abstract class EventLoopBase: CoroutineDispatcher(), Delay, EventLoop {
137137
return nextTime
138138
}
139139

140-
@Suppress("MemberVisibilityCanBePrivate") // todo: remove suppress when KT-22030 is fixed
141140
internal fun execute(task: Runnable) {
142141
if (enqueueImpl(task)) {
143142
// todo: we should unpark only when this delayed task became first in the queue
@@ -346,4 +345,4 @@ private class EventLoopImpl(thread: Thread) : ThreadEventLoop(thread) {
346345
internal class BlockingEventLoop(thread: Thread) : ThreadEventLoop(thread) {
347346
@Volatile
348347
public override var isCompleted: Boolean = false
349-
}
348+
}

0 commit comments

Comments
 (0)