Code review tool is complaining Possible null pointer dereference of safeScanWarnings in saveSafeScan(...) at the line if (safeScanWarnings != null & safeScanWarnings.size() > 0)
I am wondering how is this possible? Is this because we are returning the collection by reference?
protected void saveSafeScan(final Response response, final Dtec dtec) throws dtecException
{
Collection<String> safeScanWarnings = dtec.getSafeScanWarnings();
if (safeScanWarnings!=null && safeScanWarnings.size()>0)
{
Iterator<String> iterator = safeScanWarnings.iterator();
int i = 0;
while (iterator.hasNext())
{
String safeScanCode = iterator.next();
if (i == 0)
{
response.setSafeScanCode(safeScanCode);
response.setSafeScanCodeText(getMessage(String.format("DTECRESPONSE_SAFESCANCODE_%s",
StringUtils.trimToEmpty(safeScanCode))));
}
SafeScanWarning safeScan = new SafeScanWarning();
safeScan.setCode(safeScanCode);
safeScan.setMessage(String.format("DTECRESPONSE_SAFESCANCODE_%s", StringUtils.trimToEmpty(safeScanCode)));
safeScan.setPriority(i);
response.getSafeScanWarnings().add(safeScan);
i++;
}
}
}
&and no&&. So make sure that in the real code it's the shortcircuit evaluation. If that's already the case it's a bug in the tool. – Voo Jul 27 '11 at 21:14if (safeScanWarnings != null & safeScanWarnings.size() > 0)which is wrong (buggy) – MeBigFatGuy Sep 10 '11 at 22:17