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:
Michal Kordas 2015-08-08 00:28:06 +02:00 committed by Roman Ivanov
parent bf4e38c0c4
commit 66bcf5ddd0
1 changed files with 0 additions and 5 deletions

View File

@ -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)) {