Internalise PLSQL token manager

This commit is contained in:
Clément Fournier
2020-03-17 14:48:37 +01:00
parent 77112d2b9f
commit 941bb10d1c

View File

@ -6,13 +6,20 @@ package net.sourceforge.pmd.lang.plsql;
import java.io.Reader;
import net.sourceforge.pmd.annotation.InternalApi;
import net.sourceforge.pmd.lang.ParserOptions;
import net.sourceforge.pmd.lang.TokenManager;
import net.sourceforge.pmd.lang.ast.SimpleCharStream;
import net.sourceforge.pmd.lang.plsql.ast.PLSQLParserTokenManager;
/**
* PLSQL Token Manager implementation.
*
* @deprecated This is internal API, use {@link net.sourceforge.pmd.lang.Parser#getTokenManager(String, Reader)} via
* {@link net.sourceforge.pmd.lang.LanguageVersionHandler#getParser(ParserOptions)}.
*/
@Deprecated
@InternalApi
public class PLSQLTokenManager implements TokenManager {
private final PLSQLParserTokenManager tokenManager;