Remove unused private field, issue #744
All violations of PMD rule [UnusedPrivateField](http://pmd.sourceforge.net/pmd-5.2.3/pmd-java/rules/java/unusedcode.html#UnusedPrivateField) are fixed.
This commit is contained in:
parent
4ec8ddc405
commit
bf235506eb
|
|
@ -541,9 +541,6 @@ public class HiddenFieldCheck
|
|||
*/
|
||||
private static class FieldFrame
|
||||
{
|
||||
/** type of the frame, such as TokenTypes.CLASS_DEF or TokenTypes.ENUM_DEF */
|
||||
private final Integer frameType;
|
||||
|
||||
/** name of the frame, such name of the class or enum declaration */
|
||||
private final String frameName;
|
||||
|
||||
|
|
@ -572,7 +569,6 @@ public class HiddenFieldCheck
|
|||
{
|
||||
this.parent = parent;
|
||||
this.staticType = staticType;
|
||||
this.frameType = frameType;
|
||||
this.frameName = frameName;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue