FindBugs Report

Project Information

Project: <<unnamed project>>

FindBugs version: 1.3.5

Code analyzed:



Metrics

1424 lines of code analyzed, in 18 classes, in 1 packages.

Metric Total Density*
High Priority Warnings 2 1.40
Medium Priority Warnings 0.00
Total Warnings 2 1.40

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



Contents

Summary

Warning Type Number
Correctness Warnings 1
Malicious code vulnerability Warnings 1
Total 2

Warnings

Click on a warning row to see full context information.

Correctness Warnings

Code Warning
IL There is an apparent infinite loop in com.bea.alui.taglib.portletpageeditor.PortletDataTag.DisplayTag()

Malicious code vulnerability Warnings

Code Warning
MS com.bea.alui.taglib.portletpageeditor.PortletPageEditorTagLibraryData.ATTRIB_FLYOUTID isn't final but should be

Details

IL_INFINITE_LOOP: An apparent infinite loop

This loop doesn't seem to have a way to terminate (other than by perhaps throwing an exception).

MS_SHOULD_BE_FINAL: Field isn't final but should be

A mutable static field could be changed by malicious code or by accident from another package. The field could be made final to avoid this vulnerability.