You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/reactivex/Maybe.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1967,13 +1967,12 @@ public final <U> Maybe<U> cast(final Class<? extends U> clazz) {
1967
1967
* </dl>
1968
1968
*
1969
1969
* @param <R> the value type of the Maybe returned by the transformer function
1970
-
* @param transformer
1971
-
* implements the function that transforms the source Maybe
1970
+
* @param transformer the transformer function, not null
1972
1971
* @return a Maybe, transformed by the transformer function
1973
1972
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Implementing-Your-Own-Operators">RxJava wiki: Implementing Your Own Operators</a>
Copy file name to clipboardExpand all lines: src/main/java/io/reactivex/Single.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1467,13 +1467,12 @@ public final Single<T> hide() {
1467
1467
* </dl>
1468
1468
*
1469
1469
* @param <R> the value type of the single returned by the transformer function
1470
-
* @param transformer
1471
-
* implements the function that transforms the source Single
1470
+
* @param transformer the transformer function, not null
1472
1471
* @return the source Single, transformed by the transformer function
1473
1472
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Implementing-Your-Own-Operators">RxJava wiki: Implementing Your Own Operators</a>
0 commit comments