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
One of the fast-path branches in asDeferred() explicitly checks for a null value and throws a NullPointerException if the promise completed with a null. This is wrong, because T can legitimately be a null value. It also disagrees with the other branches, which can successfully complete with a null.
The text was updated successfully, but these errors were encountered:
One of the fast-path branches in
asDeferred()
explicitly checks for a null value and throws aNullPointerException
if the promise completed with a null. This is wrong, becauseT
can legitimately be a null value. It also disagrees with the other branches, which can successfully complete with a null.The text was updated successfully, but these errors were encountered: