Skip to content

Commit

Permalink
checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomidelucca committed Aug 19, 2018
1 parent 1796d2a commit 543795e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 543795e

Please sign in to comment.