@@ -12033,7 +12033,6 @@ public final Disposable subscribe() {
12033
12033
* if {@code onNext} is null
12034
12034
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12035
12035
*/
12036
- @CheckReturnValue
12037
12036
@SchedulerSupport(SchedulerSupport.NONE)
12038
12037
public final Disposable subscribe(Consumer<? super T> onNext) {
12039
12038
return subscribe(onNext, Functions.ON_ERROR_MISSING, Functions.EMPTY_ACTION, Functions.emptyConsumer());
@@ -12059,7 +12058,6 @@ public final Disposable subscribe(Consumer<? super T> onNext) {
12059
12058
* if {@code onNext} is null, or
12060
12059
* if {@code onError} is null
12061
12060
*/
12062
- @CheckReturnValue
12063
12061
@SchedulerSupport(SchedulerSupport.NONE)
12064
12062
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError) {
12065
12063
return subscribe(onNext, onError, Functions.EMPTY_ACTION, Functions.emptyConsumer());
@@ -12089,7 +12087,6 @@ public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super T
12089
12087
* if {@code onComplete} is null
12090
12088
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12091
12089
*/
12092
- @CheckReturnValue
12093
12090
@SchedulerSupport(SchedulerSupport.NONE)
12094
12091
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError,
12095
12092
Action onComplete) {
@@ -12123,7 +12120,6 @@ public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super T
12123
12120
* if {@code onSubscribe} is null
12124
12121
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12125
12122
*/
12126
- @CheckReturnValue
12127
12123
@SchedulerSupport(SchedulerSupport.NONE)
12128
12124
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError,
12129
12125
Action onComplete, Consumer<? super Disposable> onSubscribe) {
0 commit comments