File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ public abstract class SingleSubscriber<T> implements Subscription {
43
43
* <p>
44
44
* The {@link Single} will not call this method if it calls {@link #onError}.
45
45
*
46
- * @param value
46
+ * @param t
47
47
* the item emitted by the Single
48
48
*/
49
- public abstract void onSuccess (T value );
49
+ public abstract void onSuccess (T t );
50
50
51
51
/**
52
52
* Notifies the SingleSubscriber that the {@link Single} has experienced an error condition.
Original file line number Diff line number Diff line change @@ -124,14 +124,14 @@ public void onError(Throwable e) {
124
124
* The {@code Observable} will not call this method again after it calls either {@link #onCompleted} or
125
125
* {@link #onError}.
126
126
*
127
- * @param args
127
+ * @param t
128
128
* the item emitted by the Observable
129
129
*/
130
130
@ Override
131
- public void onNext (T args ) {
131
+ public void onNext (T t ) {
132
132
try {
133
133
if (!done ) {
134
- actual .onNext (args );
134
+ actual .onNext (t );
135
135
}
136
136
} catch (Throwable e ) {
137
137
// we handle here instead of another method so we don't add stacks to the frame
You can’t perform that action at this time.
0 commit comments