File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1259,8 +1259,6 @@ public final class kotlinx/coroutines/selects/SelectUnbiasedKt {
1259
1259
1260
1260
public final class kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl : kotlinx/coroutines/selects/SelectBuilder {
1261
1261
public fun <init> (Lkotlin/coroutines/Continuation;)V
1262
- public final fun getClauses ()Ljava/util/ArrayList;
1263
- public final fun getInstance ()Lkotlinx/coroutines/selects/SelectBuilderImpl;
1264
1262
public final fun handleBuilderException (Ljava/lang/Throwable;)V
1265
1263
public final fun initSelectResult ()Ljava/lang/Object;
1266
1264
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,12 @@ 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
+
37
+ private val instance = SelectBuilderImpl (uCont)
38
+ private val clauses = arrayListOf< () -> Unit > ()
37
39
38
40
@PublishedApi
39
41
internal fun handleBuilderException (e : Throwable ): Unit = instance.handleBuilderException(e)
You can’t perform that action at this time.
0 commit comments