File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/main/java/io/reactivex Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ public interface MaybeObserver<T> {
45
45
* <p>
46
46
* The {@link Maybe} will not call this method if it calls {@link #onError}.
47
47
*
48
- * @param value
48
+ * @param t
49
49
* the item emitted by the Maybe
50
50
*/
51
- void onSuccess (T value );
51
+ void onSuccess (T t );
52
52
53
53
/**
54
54
* Notifies the MaybeObserver that the {@link Maybe} has experienced an error condition.
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ public interface Observer<T> {
50
50
* The {@code Observable} will not call this method again after it calls either {@link #onComplete} or
51
51
* {@link #onError}.
52
52
*
53
- * @param value
53
+ * @param t
54
54
* the item emitted by the Observable
55
55
*/
56
- void onNext (T value );
56
+ void onNext (T t );
57
57
58
58
/**
59
59
* Notifies the Observer that the {@link Observable} has experienced an error condition.
Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ public interface SingleObserver<T> {
47
47
* <p>
48
48
* The {@link Single} will not call this method if it calls {@link #onError}.
49
49
*
50
- * @param value
50
+ * @param t
51
51
* the item emitted by the Single
52
52
*/
53
- void onSuccess (T value );
53
+ void onSuccess (T t );
54
54
55
55
/**
56
56
* Notifies the SingleObserver that the {@link Single} has experienced an error condition.
You can’t perform that action at this time.
0 commit comments