File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 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 {
12591259
12601260public final class kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl : kotlinx/coroutines/selects/SelectBuilder {
12611261 public fun <init> (Lkotlin/coroutines/Continuation;)V
1262- public final fun getClauses ()Ljava/util/ArrayList;
1263- public final fun getInstance ()Lkotlinx/coroutines/selects/SelectBuilderImpl;
12641262 public final fun handleBuilderException (Ljava/lang/Throwable;)V
12651263 public final fun initSelectResult ()Ljava/lang/Object;
12661264 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<
3030
3131
3232@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 > ()
3739
3840 @PublishedApi
3941 internal fun handleBuilderException (e : Throwable ): Unit = instance.handleBuilderException(e)
You can’t perform that action at this time.
0 commit comments