File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1249,8 +1249,6 @@ public final class kotlinx/coroutines/selects/SelectUnbiasedKt {
1249
1249
1250
1250
public final class kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl : kotlinx/coroutines/selects/SelectBuilder {
1251
1251
public fun <init> (Lkotlin/coroutines/Continuation;)V
1252
- public final fun getClauses ()Ljava/util/ArrayList;
1253
- public final fun getInstance ()Lkotlinx/coroutines/selects/SelectBuilderImpl;
1254
1252
public final fun handleBuilderException (Ljava/lang/Throwable;)V
1255
1253
public final fun initSelectResult ()Ljava/lang/Object;
1256
1254
public fun invoke (Lkotlinx/coroutines/selects/SelectClause0;Lkotlin/jvm/functions/Function1;)V
Original file line number Diff line number Diff line change @@ -30,10 +30,11 @@ public suspend inline fun <R> selectUnbiased(crossinline builder: SelectBuilder<
30
30
31
31
32
32
@PublishedApi
33
- internal class UnbiasedSelectBuilderImpl <in R >(uCont : Continuation <R >) :
34
- SelectBuilder <R > {
35
- val instance = SelectBuilderImpl (uCont)
36
- val clauses = arrayListOf< () -> Unit > ()
33
+ internal class UnbiasedSelectBuilderImpl <in R >(
34
+ uCont : Continuation <R >
35
+ ) : SelectBuilder<R> {
36
+ private val instance = SelectBuilderImpl (uCont)
37
+ private val clauses = arrayListOf< () -> Unit > ()
37
38
38
39
@PublishedApi
39
40
internal fun handleBuilderException (e : Throwable ): Unit = instance.handleBuilderException(e)
You can’t perform that action at this time.
0 commit comments