fix checkstyle errors

This commit is contained in:
Oliver Burn 2001-10-31 13:32:41 +00:00
parent f8a69b0780
commit fb830fc73e
2 changed files with 8 additions and 6 deletions

View File

@ -195,7 +195,7 @@ public class CheckStyleTask
/** @param aFail whether to fail if a violation is found **/
public void setFailOnViolation(boolean aFail)
{
mFailOnViolation = aFail;
mFailOnViolation = aFail;
}
/** @param aNum **/

View File

@ -198,12 +198,14 @@ class Checker
/**
* Parses and returns the AST for a file.
* @return the AST
* @param aFileName name of file read
* @param aReader the Reader to generate the AST
* @throws FileNotFoundException error occurred
* @throws RecognitionException error occurred
* @throws TokenStreamException error occurred
**/
* @return the AST
* @exception FileNotFoundException error occurred
* @exception RecognitionException error occurred
* @exception TokenStreamException error occurred
*
*/
private AST getAST(String aFileName, Reader aReader)
throws FileNotFoundException, RecognitionException, TokenStreamException
{