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) {
5252 try {
5353 if (predicate .call (value )) {
5454 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- }
6955 }
7056 } catch (Throwable ex ) {
7157 child .onError (ex );
You can’t perform that action at this time.
0 commit comments