View by Classes

Findings - Overview

warning Nullcheck of value previously dereferenced (Findbugs)

Nullcheck of a at line 73 of value previously dereferenced in org.jcoderz.phoenix.report.samples.SimplePmdFindings.sampleMethod() (sample)

Further info on the wiki.

A value is checked here to see whether it is null, but this value can't be null because it was previously dereferenced and if it were null a null pointer exception would have occurred at the earlier dereference. Essentially, this code and the previous dereference disagree as to whether this value is allowed to be null. Either the check is redundant or the previous dereference is erroneous.

1org.jcoderz.phoenix.report.samples.SimplePmdFindings
 [73]