View by Classes

Findings - Overview

warning Method discards result of readLine after checking if it is nonnull (Findbugs)

org.jcoderz.phoenix.report.ResourceInfo.countLinesOfCode(String) discards result of readLine after checking if it is nonnull

Further info on the wiki.

The value returned by readLine is discarded after checking to see if the return value is non-null. In almost all situations, if the result is non-null, you will want to use that non-null value. Calling readLine again will give you a different line.

1org.jcoderz.phoenix.report.ResourceInfo
 [191]