Issue #2451: deprecated AbstractIllegalCheck

This commit is contained in:
rnveach 2015-11-01 10:08:46 -05:00 committed by Roman Ivanov
parent f4d416e749
commit e2fa645e54
1 changed files with 3 additions and 0 deletions

View File

@ -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();