FindBugs Report

Project Information

FindBugs version: 2.0.2

Metrics

14299 lines of code analyzed, in 241 classes, in 18 packages.

Metric Total Density*
High Priority Warnings 0.00
Medium Priority Warnings 1 0.07
Total Warnings 1 0.07

(* Defects per Thousand lines of non-commenting source statements)



Contents

Summary

Warning Type Number
Performance Warnings 1
Total 1

Warnings

Click on a warning row to see full context information.

Performance Warnings

Code Warning
WMI org.qedeq.kernel.bo.service.logic.ModuleConstantsExistenceCheckerImpl.init() makes inefficient use of keySet iterator instead of entrySet iterator

Details

WMI_WRONG_MAP_ITERATOR: Inefficient use of keySet iterator instead of entrySet iterator

This method accesses the value of a Map entry, using a key that was retrieved from a keySet iterator. It is more efficient to use an iterator on the entrySet of the map, to avoid the Map.get(key) lookup.