diff options
Diffstat (limited to 'plugins/sonar-checkstyle-plugin')
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml index a882de63115..f993268da83 100644 --- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml +++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sonar-way.xml @@ -148,11 +148,11 @@ </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck</key> </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck</key> </rule> </rules> </profile> diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml index 9eef0c794d0..e987174d78d 100644 --- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml +++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/profile-sun-conventions.xml @@ -619,11 +619,11 @@ </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck</key> </rule> <rule> <repositoryKey>checkstyle</repositoryKey> - <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName</key> + <key>com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck</key> </rule> </rules> </profile> diff --git a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml index 651b39e9ec0..c281f27bdcd 100644 --- a/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml +++ b/plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml @@ -1298,7 +1298,7 @@ <configKey><![CDATA[Checker/TreeWalker/OneStatementPerLine]]></configKey> </rule> - <rule key="com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterName"> + <rule key="com.puppycrawl.tools.checkstyle.checks.naming.ClassTypeParameterNameCheck"> <priority>MAJOR</priority> <name><![CDATA[Class Type Parameter Name]]></name> <configKey><![CDATA[Checker/TreeWalker/ClassTypeParameterName]]></configKey> @@ -1307,7 +1307,7 @@ </param> </rule> - <rule key="com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterName"> + <rule key="com.puppycrawl.tools.checkstyle.checks.naming.MethodTypeParameterNameCheck"> <priority>MAJOR</priority> <name><![CDATA[Method Type Parameter Name]]></name> <configKey><![CDATA[Checker/TreeWalker/MethodTypeParameterName]]></configKey> |