From d9de4a5f4e62693261d6855b926517cde4c86ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Fournier?= Date: Tue, 25 Aug 2020 15:25:38 +0200 Subject: [PATCH] Remove AbstractRuleViolationFactory Since we have a compat branch for the designer, this doesn't need to exist --- .../lang/rule/AbstractRuleViolationFactory.java | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/AbstractRuleViolationFactory.java diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/AbstractRuleViolationFactory.java b/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/AbstractRuleViolationFactory.java deleted file mode 100644 index 361111e08c..0000000000 --- a/pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/AbstractRuleViolationFactory.java +++ /dev/null @@ -1,15 +0,0 @@ -/* - * BSD-style license; for more info see http://pmd.sourceforge.net/license.html - */ - -package net.sourceforge.pmd.lang.rule; - -import net.sourceforge.pmd.lang.rule.impl.DefaultRuleViolationFactory; - -/** - * @deprecated This is kept for binary compatibility with the 6.x designer, yet will - * go away in 7.0. Use {@link DefaultRuleViolationFactory} - */ -@Deprecated -public class AbstractRuleViolationFactory extends DefaultRuleViolationFactory { -}