Remove redundant empty method. #1555
Fixes `RedundantMethodOverride` inspection violation. Description: >Reports any method that has a body and signature that are identical to its super method. Such a method is redundant and probably a coding error.
This commit is contained in:
parent
bf4e38c0c4
commit
66bcf5ddd0
|
|
@ -148,11 +148,6 @@ public abstract class AbstractJavadocCheck extends Check {
|
|||
TREE_CACHE.clear();
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void leaveToken(DetailAST ast) {
|
||||
// No code by default, should be overridden only by demand at subclasses
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void visitToken(DetailAST blockCommentAst) {
|
||||
if (JavadocUtils.isJavadocComment(blockCommentAst)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue