We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cfdf7a commit d5951d8Copy full SHA for d5951d8
kotlinx-coroutines-test/common/src/internal/ExceptionCollector.kt
@@ -20,7 +20,7 @@ import kotlin.coroutines.*
20
* The callbacks in this object are the last resort before relying on platform-dependent
21
* ways to report uncaught exceptions from coroutines.
22
*/
23
-internal object ExceptionCollector: AbstractCoroutineContextElement(CoroutineExceptionHandler), CoroutineExceptionHandler {
+internal object ExceptionCollector : AbstractCoroutineContextElement(CoroutineExceptionHandler), CoroutineExceptionHandler {
24
private val lock = SynchronizedObject()
25
private var enabled = false
26
private val unprocessedExceptions = mutableListOf<Throwable>()
0 commit comments