Fix file name for token manager error

This commit is contained in:
Clément Fournier
2020-03-20 16:07:02 +01:00
parent 2b36ef5e39
commit 3cdcba2299
36 changed files with 49 additions and 205 deletions

View File

@ -11,7 +11,6 @@ import org.apache.commons.io.IOUtils;
import net.sourceforge.pmd.lang.AbstractParser;
import net.sourceforge.pmd.lang.ParserOptions;
import net.sourceforge.pmd.lang.TokenManager;
import net.sourceforge.pmd.lang.ast.ParseException;
import net.sourceforge.pmd.lang.scala.ast.ASTSource;
@ -54,9 +53,4 @@ public class ScalaParser extends AbstractParser {
return (ASTSource) new ScalaTreeBuilder().build(src);
}
@Override
protected TokenManager createTokenManager(Reader source) {
return null;
}
}