View by Classes

Findings - Overview

info method creates local variable-based synchronized collection (Findbugs)

method org.jcoderz.phoenix.report.StatisticCollector.writeSummary(Map) creates local variable-based synchronized collection

Further info on the wiki.

This method creates a synchronized collection and store the reference to it in a local variable. As local variables are by definition threadsafe, it seems questionable that this collection needs to be synchronized.

If you are usingconsider using
java.util.Vectorjava.util.ArrayList
java.util.Hashtablejava.util.HashMap
java.lang.StringBufferjava.lang.StringBuilder

1org.jcoderz.phoenix.report.StatisticCollector
 [188]