File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ internal const val MODE_ATOMIC = 0
23
23
* **DO NOT CHANGE THE CONSTANT VALUE**. It is being into the user code from [suspendCancellableCoroutine].
24
24
*/
25
25
@PublishedApi
26
- internal const val MODE_CANCELLABLE = 1
26
+ internal const val MODE_CANCELLABLE : Int = 1
27
27
28
28
/* *
29
29
* Cancellable dispatch mode for [suspendCancellableCoroutineReusable].
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ internal class UnbiasedSelectBuilderImpl<in R>(uCont: Continuation<R>) :
36
36
val clauses = arrayListOf< () -> Unit > ()
37
37
38
38
@PublishedApi
39
- internal fun handleBuilderException (e : Throwable ) = instance.handleBuilderException(e)
39
+ internal fun handleBuilderException (e : Throwable ): Unit = instance.handleBuilderException(e)
40
40
41
41
@PublishedApi
42
42
internal fun initSelectResult (): Any? {
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ import kotlinx.coroutines.*
11
11
private typealias Node = LockFreeLinkedListNode
12
12
13
13
@PublishedApi
14
- internal const val UNDECIDED = 0
14
+ internal const val UNDECIDED : Int = 0
15
15
16
16
@PublishedApi
17
- internal const val SUCCESS = 1
17
+ internal const val SUCCESS : Int = 1
18
18
19
19
@PublishedApi
20
- internal const val FAILURE = 2
20
+ internal const val FAILURE : Int = 2
21
21
22
22
@PublishedApi
23
23
internal val CONDITION_FALSE : Any = Symbol (" CONDITION_FALSE" )
You can’t perform that action at this time.
0 commit comments