Author: dennisl
Date: Wed Nov  8 14:48:21 2006
New Revision: 472675

URL: http://svn.apache.org/viewvc?view=rev&rev=472675
Log:
o Fix the Checkstyle error that I just introduced.

Modified:
    
maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReportGenerator.java

Modified: 
maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReportGenerator.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReportGenerator.java?view=diff&rev=472675&r1=472674&r2=472675
==============================================================================
--- 
maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReportGenerator.java
 (original)
+++ 
maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleReportGenerator.java
 Wed Nov  8 14:48:21 2006
@@ -371,7 +371,8 @@
         String fixedmessage = getConfigAttribute( checkerConfig, "message", 
null );
         // Grab the severity from the rule configuration, use null as default 
value
         String configSeverity = getConfigAttribute( checkerConfig, "severity", 
null );
-        sink.text( countRuleViolation( results.getFiles().values().iterator(), 
ruleName, fixedmessage, configSeverity ) );
+        sink.text( countRuleViolation( results.getFiles().values().iterator(), 
ruleName, fixedmessage,
+                                       configSeverity ) );
         sink.tableCell_();
 
         sink.tableCell();


Reply via email to