[core] Move classes into n.s.pmd.reporting
- Report - RuleContext - RuleViolation - ViolationSuppressor - ParametricRuleViolation Fixes #3903
This commit is contained in:
@ -4,11 +4,11 @@
|
||||
|
||||
package net.sourceforge.pmd.lang.scala.rule;
|
||||
|
||||
import net.sourceforge.pmd.RuleContext;
|
||||
import net.sourceforge.pmd.lang.ast.Node;
|
||||
import net.sourceforge.pmd.lang.rule.AbstractRule;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ScalaNode;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ScalaParserVisitor;
|
||||
import net.sourceforge.pmd.reporting.RuleContext;
|
||||
|
||||
/**
|
||||
* The default base implementation of a PMD Rule for Scala. Uses the Visitor
|
||||
|
@ -10,13 +10,13 @@ import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import net.sourceforge.pmd.Report;
|
||||
import net.sourceforge.pmd.RuleContext;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ASTSource;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ASTTermApply;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ASTTermName;
|
||||
import net.sourceforge.pmd.lang.scala.ast.BaseScalaTest;
|
||||
import net.sourceforge.pmd.lang.scala.ast.ScalaNode;
|
||||
import net.sourceforge.pmd.reporting.Report;
|
||||
import net.sourceforge.pmd.reporting.RuleContext;
|
||||
|
||||
class ScalaRuleTest extends BaseScalaTest {
|
||||
|
||||
|
@ -8,10 +8,10 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import net.sourceforge.pmd.Report;
|
||||
import net.sourceforge.pmd.RuleViolation;
|
||||
import net.sourceforge.pmd.lang.rule.XPathRule;
|
||||
import net.sourceforge.pmd.lang.scala.ast.BaseScalaTest;
|
||||
import net.sourceforge.pmd.reporting.Report;
|
||||
import net.sourceforge.pmd.reporting.RuleViolation;
|
||||
|
||||
class XPathRuleTest extends BaseScalaTest {
|
||||
|
||||
|
Reference in New Issue
Block a user