Add deprecation javadocs

This commit is contained in:
Andreas Dangel
2020-07-17 14:43:43 +02:00
parent c25e10717b
commit 7ae424a35b
14 changed files with 67 additions and 2 deletions

View File

@ -16,8 +16,13 @@ import net.sourceforge.pmd.lang.plsql.ast.PLSQLNode;
import net.sourceforge.pmd.lang.plsql.ast.PLSQLParserVisitor;
import net.sourceforge.pmd.lang.plsql.ast.PLSQLParserVisitorAdapter;
import net.sourceforge.pmd.lang.rule.AbstractRuleChainVisitor;
import net.sourceforge.pmd.lang.rule.RuleChainVisitor;
import net.sourceforge.pmd.lang.rule.XPathRule;
/**
* @deprecated for removal with PMD 7. A language dependent rule chain visitor is not needed anymore.
* See {@link RuleChainVisitor}.
*/
@Deprecated
public class PLSQLRuleChainVisitor extends AbstractRuleChainVisitor {
private static final Logger LOGGER = Logger.getLogger(PLSQLRuleChainVisitor.class.getName());