@@ -12079,7 +12079,7 @@ public final Disposable subscribe() {
12079
12079
* if {@code onNext} is null
12080
12080
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12081
12081
*/
12082
- @CheckReturnValue
12082
+ @OptionalCheckReturnValue
12083
12083
@SchedulerSupport(SchedulerSupport.NONE)
12084
12084
public final Disposable subscribe(Consumer<? super T> onNext) {
12085
12085
return subscribe(onNext, Functions.ON_ERROR_MISSING, Functions.EMPTY_ACTION, Functions.emptyConsumer());
@@ -12105,7 +12105,7 @@ public final Disposable subscribe(Consumer<? super T> onNext) {
12105
12105
* if {@code onNext} is null, or
12106
12106
* if {@code onError} is null
12107
12107
*/
12108
- @CheckReturnValue
12108
+ @OptionalCheckReturnValue
12109
12109
@SchedulerSupport(SchedulerSupport.NONE)
12110
12110
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError) {
12111
12111
return subscribe(onNext, onError, Functions.EMPTY_ACTION, Functions.emptyConsumer());
@@ -12135,7 +12135,7 @@ public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super T
12135
12135
* if {@code onComplete} is null
12136
12136
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12137
12137
*/
12138
- @CheckReturnValue
12138
+ @OptionalCheckReturnValue
12139
12139
@SchedulerSupport(SchedulerSupport.NONE)
12140
12140
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError,
12141
12141
Action onComplete) {
@@ -12169,7 +12169,7 @@ public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super T
12169
12169
* if {@code onSubscribe} is null
12170
12170
* @see <a href="http://reactivex.io/documentation/operators/subscribe.html">ReactiveX operators documentation: Subscribe</a>
12171
12171
*/
12172
- @CheckReturnValue
12172
+ @OptionalCheckReturnValue
12173
12173
@SchedulerSupport(SchedulerSupport.NONE)
12174
12174
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError,
12175
12175
Action onComplete, Consumer<? super Disposable> onSubscribe) {
0 commit comments