We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cec2bfd + 2f3968d commit b8b28e4Copy full SHA for b8b28e4
1 file changed
rxjava-core/src/main/java/rx/operators/OperatorFilter.java
@@ -52,20 +52,6 @@ public void onNext(T value) {
52
try {
53
if (predicate.call(value)) {
54
child.onNext(value);
55
- } else {
56
- /*
57
- * Special casing of GroupedObservable since GroupedObservable ***MUST*** be subscribed to
58
- * otherwise it will block the GroupBy operator.
59
- *
60
- * See https://github.com/Netflix/RxJava/issues/844
61
- */
62
- if (value instanceof GroupedObservable) {
63
- System.out.println("value is GroupedObservable");
64
- @SuppressWarnings("rawtypes")
65
- GroupedObservable go = (GroupedObservable) value;
66
- System.out.println("********* unsubscribe from go");
67
- go.take(0).subscribe();
68
- }
69
}
70
} catch (Throwable ex) {
71
child.onError(ex);
0 commit comments