File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed
binary-compatibility-validator/reference-public-api
common/kotlinx-coroutines-core-common/src/channels Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -563,10 +563,7 @@ public final class kotlinx/coroutines/channels/ClosedSendChannelException : java
563
563
}
564
564
565
565
public final class kotlinx/coroutines/channels/ConflatedBroadcastChannel : kotlinx/coroutines/channels/BroadcastChannel {
566
- public static final field CLOSED Lkotlinx/coroutines/channels/ConflatedBroadcastChannel$Closed;
567
566
public static final field Companion Lkotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion;
568
- public static final field INITIAL_STATE Lkotlinx/coroutines/channels/ConflatedBroadcastChannel$State;
569
- public static final field UNDEFINED Lkotlinx/coroutines/internal/Symbol;
570
567
public fun <init> ()V
571
568
public fun <init> (Ljava/lang/Object;)V
572
569
public fun cancel (Ljava/lang/Throwable;)Z
Original file line number Diff line number Diff line change @@ -45,14 +45,9 @@ public class ConflatedBroadcastChannel<E>() : BroadcastChannel<E> {
45
45
private val onCloseHandler = atomic<Any ?>(null )
46
46
47
47
private companion object {
48
- @JvmField
49
- val CLOSED = Closed (null )
50
-
51
- @JvmField
52
- val UNDEFINED = Symbol (" UNDEFINED" )
53
-
54
- @JvmField
55
- val INITIAL_STATE = State <Any ?>(UNDEFINED , null )
48
+ private val CLOSED = Closed (null )
49
+ private val UNDEFINED = Symbol (" UNDEFINED" )
50
+ private val INITIAL_STATE = State <Any ?>(UNDEFINED , null )
56
51
}
57
52
58
53
private class State <E >(
You can’t perform that action at this time.
0 commit comments