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
There are some APIs that are designed to work with nulls, but are in packages annotated with @NonNullApi. This generates static analysis warning for any implementers / extenders.
I've not done an exhaustive search, but one example is o.s.d.querydsl.binding.SingleValueBinding#bind
Returns:
can be null, in which case the binding will not be incorporated in the overall Predicate .
Attempting to return null will be treated as a mistake
Affects: 2.2.1 (Moore SR1)
The text was updated successfully, but these errors were encountered:
James Howe opened DATACMNS-1616 and commented
There are some APIs that are designed to work with
nulls
, but are in packages annotated with@NonNullApi
. This generates static analysis warning for any implementers / extenders.I've not done an exhaustive search, but one example is
o.s.d.querydsl.binding.SingleValueBinding#bind
Attempting to return
null
will be treated as a mistakeAffects: 2.2.1 (Moore SR1)
The text was updated successfully, but these errors were encountered: