PMD rule AbstractClassWithoutAbstractMethod is activated. Issue #744
This commit is contained in:
parent
b26b43a331
commit
3d3f3d5f9c
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue