Author: michaelo
Date: Sun Feb 23 11:54:40 2014
New Revision: 1570998

URL: http://svn.apache.org/r1570998
Log:
Unintentionally removed else keyword.

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?rev=1570998&r1=1570997&r2=1570998&view=diff
==============================================================================
--- 
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
 Sun Feb 23 11:54:40 2014
@@ -195,7 +195,7 @@ public class CheckstyleReportGenerator
         {
             iconWarning();
         }
-         if ( SeverityLevel.ERROR.getName().equalsIgnoreCase( level ) )
+        else if ( SeverityLevel.ERROR.getName().equalsIgnoreCase( level ) )
         {
             iconError();
         }


Reply via email to