We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, many (if not all?) usage of addThrowable is as follows:
addThrowable
if (errors.addThrowable(ex)) { // do something with the error case } else { RxJavaPlugins.onError(ex); }
The plugin error call could be inlined into the method call and renamed to tryAddThrowable to ensure all usage places are updated correctly.
tryAddThrowable
The text was updated successfully, but these errors were encountered:
Hey, do you need help doing this?
Sorry, something went wrong.
Each usage location has to be reevaluated and there are thousands of those. It would be easier if I do them.
Successfully merging a pull request may close this issue.
Currently, many (if not all?) usage of
addThrowable
is as follows:The plugin error call could be inlined into the method call and renamed to
tryAddThrowable
to ensure all usage places are updated correctly.The text was updated successfully, but these errors were encountered: