checkstyle fixes

This commit is contained in:
Tomi De Lucca
2018-08-19 04:06:53 -03:00
parent 1796d2a7a5
commit 543795e550
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import net.sourceforge.pmd.lang.ast.TokenMgrError;
*/
public abstract class AntlrTokenizer implements Tokenizer {
protected abstract Lexer getLexerForSource(final CharStream charStream);
protected abstract Lexer getLexerForSource(CharStream charStream);
@Override
public void tokenize(final SourceCode sourceCode, final Tokens tokenEntries) {

View File

@ -4,10 +4,11 @@
package net.sourceforge.pmd.cpd;
import net.sourceforge.pmd.lang.swift.antlr4.SwiftLexer;
import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.Lexer;
import net.sourceforge.pmd.lang.swift.antlr4.SwiftLexer;
/**
* SwiftTokenizer
*/