Skip to content

Commit

Permalink
Pull checkstyle#3835: added missing leave token to AbstractTypeAwareC…
Browse files Browse the repository at this point in the history
…heck
  • Loading branch information
rnveach authored and romani committed Feb 16, 2017
1 parent 67bd379 commit 48d48fd
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -158,6 +158,7 @@ else if (ast.getType() == TokenTypes.CLASS_DEF
@Override
public final void leaveToken(DetailAST ast) {
if (ast.getType() == TokenTypes.CLASS_DEF
|| ast.getType() == TokenTypes.INTERFACE_DEF
|| ast.getType() == TokenTypes.ENUM_DEF) {
// perhaps it was inner class
int dotIdx = currentClassName.lastIndexOf('$');
Expand Down

0 comments on commit 48d48fd

Please sign in to comment.