aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.java b/src/main/java/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.java
index e138be0d0..e980d72d4 100644
--- a/src/main/java/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.java
+++ b/src/main/java/com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.java
@@ -26,8 +26,11 @@ import com.puppycrawl.tools.checkstyle.api.Check;
/**
* Support for checks that look for usage of illegal types.
+ * @deprecated Checkstyle will not support abstract checks anymore. Use {@link Check} instead.
* @author Oliver Burn
+ * @noinspection AbstractClassNeverImplemented
*/
+@Deprecated
public abstract class AbstractIllegalCheck extends Check {
/** Illegal class names. */
private final Set<String> illegalClassNames = Sets.newHashSet();