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/rx/Observable.java
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -174,17 +174,15 @@ public void call(Subscriber<? super R> o) {
174
174
* @return the source Observable, transformed by the transformer function
175
175
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Implementing-Your-Own-Operators">RxJava wiki: Implementing Your Own Operators</a>
176
176
*/
177
-
@SuppressWarnings("unchecked")
178
177
public <R> Observable<R> compose(Transformer<? superT, ? extendsR> transformer) {
179
-
// Casting to Observable<R> is type-safe because we know Observable is covariant.
0 commit comments