Skip to content

Commit

Permalink
Remove call to RxJavaPlugins ErrorHander in mergeDelayError operator …
Browse files Browse the repository at this point in the history
…- CompositeException is already visible
  • Loading branch information
mattrjacobs committed Jun 2, 2014
1 parent c74f955 commit 3cf18a1
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import rx.Subscriber;
import rx.exceptions.CompositeException;
import rx.observers.SerializedSubscriber;
import rx.plugins.RxJavaPlugins;
import rx.subscriptions.CompositeSubscription;

/**
Expand Down Expand Up @@ -128,7 +127,6 @@ public void onCompleted() {
}

void error(Throwable e) {
RxJavaPlugins.getInstance().getErrorHandler().handleError(e);
exceptions.add(e);
complete();
}
Expand Down

0 comments on commit 3cf18a1

Please sign in to comment.