Skip to content

Commit 3cf18a1

Browse files
committed
Remove call to RxJavaPlugins ErrorHander in mergeDelayError operator - CompositeException is already visible
1 parent c74f955 commit 3cf18a1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rxjava-core/src/main/java/rx/internal/operators/OperatorMergeDelayError.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import rx.Subscriber;
2323
import rx.exceptions.CompositeException;
2424
import rx.observers.SerializedSubscriber;
25-
import rx.plugins.RxJavaPlugins;
2625
import rx.subscriptions.CompositeSubscription;
2726

2827
/**
@@ -128,7 +127,6 @@ public void onCompleted() {
128127
}
129128

130129
void error(Throwable e) {
131-
RxJavaPlugins.getInstance().getErrorHandler().handleError(e);
132130
exceptions.add(e);
133131
complete();
134132
}

0 commit comments

Comments
 (0)