View by Classes

Findings - Overview

warning method uses integer based for loops to iterate over a List (Findbugs)

method org.jcoderz.commons.config.ConfigurationCacheByDbReadOnlyImpl.notifyServices() uses integer based for loops to iterate over a List

Further info on the wiki.

This method uses an integer based for loop to iterator over a java.util.List, by calling List.get(i) each time thru the loop. The integer is not used for other reasons. It is better to use an Iterator instead, as depending on List implementation, iterators can perform better, and they also allow for exchanging of other collection types without issue.

1org.jcoderz.commons.config.ConfigurationCacheByDbReadOnlyImpl
 [293]