You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IdentityFlowProcessorVerification.createFailedFlowPublisher is allowed to return null, but if you do return null, then an NPE will be thrown because it doesn't check if it's null before passing it to FlowAdapters.toPublisher.
The text was updated successfully, but these errors were encountered:
jroper
added a commit
to jroper/reactive-streams-jvm
that referenced
this issue
Feb 21, 2018
Fixesreactive-streams#425
IdentityFlowProcessorVerification.createFailedProcessor is allowed to
return null, but the TCK throws an NPE if it does. This introduces a
null check to ensure that doesn't happen.
Fixesreactive-streams#425
IdentityFlowProcessorVerification.createFailedProcessor is allowed to
return null, but the TCK throws an NPE if it does. This introduces a
null check to ensure that doesn't happen.
Fixes#425
IdentityFlowProcessorVerification.createFailedProcessor is allowed to
return null, but the TCK throws an NPE if it does. This introduces a
null check to ensure that doesn't happen.
IdentityFlowProcessorVerification.createFailedFlowPublisher
is allowed to returnnull
, but if you do return null, then an NPE will be thrown because it doesn't check if it's null before passing it toFlowAdapters.toPublisher
.The text was updated successfully, but these errors were encountered: