PMD rule AbstractClassWithoutAbstractMethod is activated. Issue #744

This commit is contained in:
Roman Ivanov 2015-04-23 19:51:10 -04:00
parent b26b43a331
commit 3d3f3d5f9c
2 changed files with 1 additions and 2 deletions

View File

@ -115,7 +115,6 @@
<exclude name="ImmutableField"/>
<!-- this rule does not have any option, unreasonable to use -->
<exclude name="MissingBreakInSwitch"/>
<exclude name="AbstractClassWithoutAbstractMethod"/>
<exclude name="SimplifyConditional"/>
<exclude name="CompareObjectsWithEquals"/>
<exclude name="PositionLiteralsFirstInComparisons"/>

View File

@ -229,7 +229,7 @@ public abstract class DeclarationCollector extends Check
* @author Stephen Bloch
* June 19, 2003
*/
private abstract static class LexicalFrame
private static class LexicalFrame
{
/** Set of name of variables declared in this frame. */
private final Set<String> varNames;