FindBugs Report

Project Information

FindBugs version: 1.3.8

Metrics

5248 lines of code analyzed, in 170 classes, in 9 packages.

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

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



Contents

Summary

Warning Type Number
Dodgy Warnings 1
Total 1

Warnings

Click on a warning row to see full context information.

Dodgy Warnings

Code Warning
DLS Dead store to elements in org.qedeq.gui.se.pane.ParserPane$1.actionPerformed(ActionEvent)

Details

DLS_DEAD_LOCAL_STORE: Dead store to local variable

This instruction assigns a value to a local variable, but the value is not read or used in any subsequent instruction. Often, this indicates an error, because the value computed is never used.

Note that Sun's javac compiler often generates dead stores for final local variables. Because FindBugs is a bytecode-based tool, there is no easy way to eliminate these false positives.