[html] Move HtmlCpdLexer
This commit is contained in:
parent
ce347bd736
commit
95870ffa58
@ -330,6 +330,8 @@ in the migration guide for details.
|
||||
* {%jdoc core::reporting.RuleViolation %}
|
||||
* {%jdoc core::reporting.ViolationSuppressor %}
|
||||
* {%jdoc core::lang.rule.xpath.XPathRule %} has been moved into subpackage {% jdoc_package core::lang.rule.xpath %}.
|
||||
* pmd-html
|
||||
* `net.sourceforge.pmd.lang.html.ast.HtmlCpdLexer` moved into package `cpd`: {%jdoc html::lang.html.cpd.HtmlCpdLexer %}.
|
||||
|
||||
**Internalized classes and interfaces and methods**
|
||||
|
||||
|
@ -7,7 +7,7 @@ package net.sourceforge.pmd.lang.html;
|
||||
import net.sourceforge.pmd.cpd.CpdLexer;
|
||||
import net.sourceforge.pmd.lang.LanguagePropertyBundle;
|
||||
import net.sourceforge.pmd.lang.LanguageRegistry;
|
||||
import net.sourceforge.pmd.lang.html.ast.HtmlCpdLexer;
|
||||
import net.sourceforge.pmd.lang.html.cpd.HtmlCpdLexer;
|
||||
import net.sourceforge.pmd.lang.impl.SimpleLanguageModuleBase;
|
||||
|
||||
public final class HtmlLanguageModule extends SimpleLanguageModuleBase {
|
||||
|
@ -2,7 +2,7 @@
|
||||
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
|
||||
*/
|
||||
|
||||
package net.sourceforge.pmd.lang.html.ast;
|
||||
package net.sourceforge.pmd.lang.html.cpd;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.UncheckedIOException;
|
||||
@ -15,6 +15,10 @@ import net.sourceforge.pmd.lang.ast.Parser.ParserTask;
|
||||
import net.sourceforge.pmd.lang.ast.SemanticErrorReporter;
|
||||
import net.sourceforge.pmd.lang.document.TextDocument;
|
||||
import net.sourceforge.pmd.lang.html.HtmlLanguageModule;
|
||||
import net.sourceforge.pmd.lang.html.ast.ASTHtmlDocument;
|
||||
import net.sourceforge.pmd.lang.html.ast.ASTHtmlTextNode;
|
||||
import net.sourceforge.pmd.lang.html.ast.HtmlNode;
|
||||
import net.sourceforge.pmd.lang.html.ast.HtmlParser;
|
||||
|
||||
/**
|
||||
* <p>Note: This class has been called HtmlTokenizer in PMD 6</p>.
|
Loading…
x
Reference in New Issue
Block a user