We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5d0ce commit addb524Copy full SHA for addb524
kotlinx-coroutines-test/common/src/TestCoroutineDispatchers.kt
@@ -93,7 +93,8 @@ private class UnconfinedTestDispatcherImpl(
93
94
override fun isDispatchNeeded(context: CoroutineContext): Boolean = false
95
96
- @Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") // do not remove the INVISIBLE_REFERENCE suppression: required in K2
+ // do not remove the INVISIBLE_REFERENCE and INVISIBLE_SETTER suppressions: required in K2
97
+ @Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE", "INVISIBLE_SETTER")
98
override fun dispatch(context: CoroutineContext, block: Runnable) {
99
checkSchedulerInContext(scheduler, context)
100
scheduler.sendDispatchEvent(context)
0 commit comments