FindBugs version: 2.0.2
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)
Warning Type | Number |
---|---|
Performance Warnings | 1 |
Total | 1 |
Click on a warning row to see full context information.
Code | Warning |
---|---|
WMI | org.qedeq.kernel.bo.service.logic.ModuleConstantsExistenceCheckerImpl.init() makes 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.