Issue #2451: deprecated AbstractTypeParameterNameCheck

This commit is contained in:
rnveach 2015-11-09 22:05:54 -05:00 committed by Roman Ivanov
parent 843f05ee25
commit 54990fc2fa
2 changed files with 5 additions and 1 deletions

View File

@ -1719,6 +1719,7 @@
<exclude>com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalCheck.class</exclude>
<exclude>com/puppycrawl/tools/checkstyle/checks/coding/AbstractIllegalMethodCheck.class</exclude>
<exclude>com/puppycrawl/tools/checkstyle/checks/coding/AbstractNestedDepthCheck.class</exclude>
<exclude>com/puppycrawl/tools/checkstyle/checks/naming/AbstractTypeParameterNameCheck.class</exclude>
</excludes>
</instrumentation>
</configuration>

View File

@ -29,9 +29,12 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </p>
*
* <p>This class extends {@link AbstractNameCheck}</p>
*
* @deprecated Checkstyle will not support abstract checks anymore. Use
* {@link AbstractNameCheck} instead.
* @author Travis Schneeberger
* @noinspection AbstractClassNeverImplemented
*/
@Deprecated
public abstract class AbstractTypeParameterNameCheck
extends AbstractNameCheck {