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: rxjava-core/src/main/java/rx/Observable.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,6 @@
48
48
importrx.observers.SafeSubscriber;
49
49
importrx.operators.OnSubscribeFromIterable;
50
50
importrx.operators.OnSubscribeRange;
51
-
importrx.operators.OperatorAll;
52
-
importrx.operators.OperationAny;
53
51
importrx.operators.OperationAsObservable;
54
52
importrx.operators.OperationBuffer;
55
53
importrx.operators.OperationCombineLatest;
@@ -92,7 +90,9 @@
92
90
importrx.operators.OperationToObservableFuture;
93
91
importrx.operators.OperationUsing;
94
92
importrx.operators.OperationWindow;
93
+
importrx.operators.OperatorAll;
95
94
importrx.operators.OperatorAmb;
95
+
importrx.operators.OperatorAny;
96
96
importrx.operators.OperatorCache;
97
97
importrx.operators.OperatorCast;
98
98
importrx.operators.OperatorDoOnEach;
@@ -3893,7 +3893,7 @@ public final Observable<T> elementAtOrDefault(int index, T defaultValue) {
3893
3893
* @see <a href="http://msdn.microsoft.com/en-us/library/hh211993.aspx">MSDN: Observable.Any (Note: the description in this page was wrong at the time of this writing)</a>
0 commit comments