PMD Results

The following document contains the results of PMD.

Summary

FilesErrors
35

Files

FilesViolations
org/apache/commons/jelly/tags/html/HTMLTagLibrary.java 2
org/apache/commons/jelly/tags/html/ParseTag.java 2
org/apache/commons/jelly/html/TestJelly.java 1

org/apache/commons/jelly/tags/html/HTMLTagLibrary.java

ViolationLine
Avoid unused private fields such as 'log' 31
Private field could be made final. It is only initialized in the declaration or constructor. 31

org/apache/commons/jelly/tags/html/ParseTag.java

ViolationLine
Avoid unused private fields such as 'log' 43
Avoid if (x != y) ..; else ..; 62

org/apache/commons/jelly/html/TestJelly.java

ViolationLine
All methods are static. Consider using Singleton instead. Alternatively, you could add a private constructor or make the class abstract to silence this warning. 38