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
It looks like toArray.nullable.elements.... can't be suppressed.
I tried @SuppressWarnings("toArray.nullable.elements.not.newarray") at both statement, method, and even -AsuppressWarnings=toArray.nullable.elements.mismatched.size,toArray.nullable.elements.not.newarray level, however it does not suppress the warnings.
Will post the reproducers later, however, for now I suppressed the warning with "all", so suppression works, however, named suppression does not.
Is it caused by upper-case letter A in toArray?
The text was updated successfully, but these errors were encountered:
It looks like
toArray.nullable.elements....
can't be suppressed.I tried
@SuppressWarnings("toArray.nullable.elements.not.newarray")
at both statement, method, and even-AsuppressWarnings=toArray.nullable.elements.mismatched.size,toArray.nullable.elements.not.newarray
level, however it does not suppress the warnings.Will post the reproducers later, however, for now I suppressed the warning with
"all"
, so suppression works, however, named suppression does not.Is it caused by upper-case letter A in
toArray
?The text was updated successfully, but these errors were encountered: