View by Classes

Findings - Overview

code-style UnnecessaryConstructor (PMD)

Avoid unnecessary constructors - the compiler will generate these for you

Further info on the wiki.
This rule detects when a constructor is not necessary; i.e., when there's only one constructor, it's public, has an empty body, and takes no arguments.
  
public class Foo {
 public Foo() {}
}
  
      

Additional info can be found at this http://pmd.sourceforge.net/rules/controversial.html#UnnecessaryConstructor site.

1org.jcoderz.commons.logging.XmlPrinterTest
 [137:11]
1org.jcoderz.commons.logging.LogElementTest
 [102:11]