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:
Michal Kordas 2015-03-14 01:19:19 +01:00 committed by Roman Ivanov
parent 4ec8ddc405
commit bf235506eb
1 changed files with 0 additions and 4 deletions

View File

@ -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;
}