Issue #2451: deprecated AbstractTypeParameterNameCheck
This commit is contained in:
parent
843f05ee25
commit
54990fc2fa
1
pom.xml
1
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue