View by Classes

Findings - Overview

info Comparison of String objects using == or != (Findbugs)

Further info on the wiki.

This code compares java.lang.String objects for reference equality using the == or != operators. Unless both strings are either constants in a source file, or have been interned using the String.intern() method, the same string value may be represented by two different String objects. Consider using the equals(Object) method instead.

2org.jcoderz.phoenix.report.Java2Html
Comparison of String objects using == or != in org.jcoderz.phoenix.report.Java2Html.createClassListTable(BufferedWriter, Collection, boolean, Comparator)  [2180],
Comparison of String objects using == or != in org.jcoderz.phoenix.report.Java2Html.createFullSummary(Comparator)  [1518]
1org.jcoderz.commons.DevelopersLogFormatter
Comparison of String objects using == or != in org.jcoderz.commons.DevelopersLogFormatter.format(LogRecord)  [93]