File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
rxjava-core/src/main/java/rx/operators Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -52,20 +52,6 @@ public void onNext(T value) {
52
52
try {
53
53
if (predicate .call (value )) {
54
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
55
}
70
56
} catch (Throwable ex ) {
71
57
child .onError (ex );
You can’t perform that action at this time.
0 commit comments