Skip to content

Commit

Permalink
~ Fixup kotlinx-coroutines-rx3 module to internal API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed Jun 16, 2020
1 parent 1ae9e0c commit f50a600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reactive/kotlinx-coroutines-rx3/src/RxChannel.kt
Expand Up @@ -54,7 +54,7 @@ public suspend inline fun <T> ObservableSource<T>.collect(action: (T) -> Unit):

@Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
private class SubscriptionChannel<T> :
LinkedListChannel<T>(), Observer<T>, MaybeObserver<T>
LinkedListChannel<T>(null), Observer<T>, MaybeObserver<T>
{
private val _subscription = atomic<Disposable?>(null)

Expand Down

0 comments on commit f50a600

Please sign in to comment.