summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2011-02-08 00:02:44 +0100
committersimonbrandhof <simon.brandhof@gmail.com>2011-02-08 00:02:44 +0100
commita33de076ed4e6c0f770810df91860ebb81789bc8 (patch)
treebb8d6785069ab13c9ef9328443f471ffe3440119
parent7b3fe3882cb4f343f6877b3601e7756c2ff17ab2 (diff)
downloadsonarqube-a33de076ed4e6c0f770810df91860ebb81789bc8.tar.gz
sonarqube-a33de076ed4e6c0f770810df91860ebb81789bc8.zip
Delete parameters ignoreModifier and ignoreName from the Checkstyle "Abstract Class Name". They are not supported in the Checkstyle version used by sonar.
-rw-r--r--plugins/sonar-checkstyle-plugin/src/main/resources/org/sonar/plugins/checkstyle/rules.xml4
1 files changed, 3 insertions, 1 deletions
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 1c3d80833fe..68d35188f62 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
@@ -424,6 +424,8 @@ Rationale: Too large methods and classes are hard to read and costly to maintain
<param key="format" type="r">
<defaultValue>^Abstract.*$|^.*Factory$</defaultValue>
</param>
+ <!--
+ Not supported yet
<param key="ignoreModifier" type="b">
<description>Controls whether to ignore checking for the abstract modifier on classes that match the name.</description>
<defaultValue>false</defaultValue>
@@ -432,7 +434,7 @@ Rationale: Too large methods and classes are hard to read and costly to maintain
<description>Controls whether to ignore checking the name. Realistically only useful if using the check to identify that match name and do not have the abstract modifier name.</description>
<defaultValue>false</defaultValue>
</param>
-
+ -->
</rule>
<rule key="com.puppycrawl.tools.checkstyle.checks.sizes.AnonInnerLengthCheck" >
<priority>MAJOR</priority>