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
RxJava 2.0.8
Found code like below can works
Single.just("1234").map(s -> null) .subscribe(s -> { System.out.println(s); });
Because Single#just not allow null, so SingleMap should not allow it? should like this? https://github.com/ReactiveX/RxJava/compare/2.x...kojilin:FIX-NPE?expand=1
The text was updated successfully, but these errors were encountered:
Your PR looks good to me, I'd say submit it but remember to remove the "Thank you contributing..." template from the description.
Sorry, something went wrong.
Closing via #5378
No branches or pull requests
RxJava 2.0.8
Found code like below can works
Because Single#just not allow null, so SingleMap should not allow it?
should like this? https://github.com/ReactiveX/RxJava/compare/2.x...kojilin:FIX-NPE?expand=1
The text was updated successfully, but these errors were encountered: