diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/checks/AbstractFormatCheck.java b/src/main/java/com/puppycrawl/tools/checkstyle/checks/AbstractFormatCheck.java index 1781a957e..7e7795520 100644 --- a/src/main/java/com/puppycrawl/tools/checkstyle/checks/AbstractFormatCheck.java +++ b/src/main/java/com/puppycrawl/tools/checkstyle/checks/AbstractFormatCheck.java @@ -31,9 +31,11 @@ import com.puppycrawl.tools.checkstyle.api.Check; * {@link Pattern regular expression}. It * provides support for setting the regular * expression using the property name {@code format}.

- * + * @deprecated Checkstyle will not support abstract checks anymore. Use {@link Check} instead. * @author Oliver Burn + * @noinspection AbstractClassNeverImplemented */ +@Deprecated public abstract class AbstractFormatCheck extends Check { /** The flags to create the regular expression with. */