View by Classes

Findings - Overview

info method concatenates an empty string to effect type conversion (Findbugs)

method org.jcoderz.commons.taskdefs.LogMessageGeneratorTest.executeAndExpectBuildException(String) concatenates an empty string to effect type conversion (test code)

Further info on the wiki.

This method concatenates an empty string with a literal value, in order to convert the literal value into a string. It is more efficient to use String.valueOf() to do the same thing as you do not incur the cost of creating a StringBuffer/Builder and calling methods on it to accomplish this.

1org.jcoderz.commons.taskdefs.LogMessageGeneratorTest
 [143]