fix checkstyle errors

This commit is contained in:
Oliver Burn 2002-10-31 09:59:49 +00:00
parent c0a8e0ff6c
commit cd32cd1ab0
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ public class ConstantNameCheck
// Serialization. Cannot enforce rules on it. :-)
final DetailAST nameAST = aAST.findFirstToken(TokenTypes.IDENT);
if ((nameAST != null)
&& !("serialVersionUID".equals(nameAST.getText()))) {
&& !("serialVersionUID".equals(nameAST.getText())))
{
retVal = true;
}
}