View by Classes

Findings - Overview

warning method uses simple loop to copy contents of one collection to another (Findbugs)

method org.jcoderz.phoenix.chart2d.Chart2DHandlerImpl.handleAxisLabelText(String, Attributes) uses simple loop to copy contents of one colleciton to another

Further info on the wiki.

This method uses a simple for loop to copy the contents of a set, list, map key/value, array or other collection to another collection. It is simpler and more straight forward to just call the addAll method of the destination collection passing in the source collection. In the case that the source is an array, you can use Array.asList method to massage the array into a collection

1org.jcoderz.phoenix.chart2d.Chart2DHandlerImpl
 [596]