Issue #2451: deprecated AbstractIllegalCheck
This commit is contained in:
parent
f4d416e749
commit
e2fa645e54
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue