Move DeprecatedAttribute annotation to internal package

This commit is contained in:
Andreas Dangel
2020-01-17 15:17:27 +01:00
parent 1f2835f96e
commit c3b7db042b
4 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import org.w3c.dom.Document;
import net.sourceforge.pmd.annotation.InternalApi;
import net.sourceforge.pmd.lang.ast.xpath.Attribute;
import net.sourceforge.pmd.lang.ast.xpath.DeprecatedAttribute;
import net.sourceforge.pmd.lang.ast.xpath.internal.DeprecatedAttribute;
import net.sourceforge.pmd.lang.dfa.DataFlowNode;
/**

View File

@ -16,6 +16,7 @@ import java.util.logging.Logger;
import net.sourceforge.pmd.annotation.Experimental;
import net.sourceforge.pmd.lang.ast.Node;
import net.sourceforge.pmd.lang.ast.xpath.internal.DeprecatedAttribute;
/**
* Represents an XPath attribute of a specific node.

View File

@ -2,7 +2,7 @@
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.ast.xpath;
package net.sourceforge.pmd.lang.ast.xpath.internal;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;

View File

@ -4,7 +4,7 @@
package net.sourceforge.pmd.lang.ast;
import net.sourceforge.pmd.lang.ast.xpath.DeprecatedAttribute;
import net.sourceforge.pmd.lang.ast.xpath.internal.DeprecatedAttribute;
/**
* @author Clément Fournier