You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2010/09/15 23:24:28 UTC

svn commit: r997509 - /maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Author: dennisl
Date: Wed Sep 15 21:24:28 2010
New Revision: 997509

URL: http://svn.apache.org/viewvc?rev=997509&view=rev
Log:
Fix error reported by Checkstyle.

Modified:
    maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Modified: maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java?rev=997509&r1=997508&r2=997509&view=diff
==============================================================================
--- maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java (original)
+++ maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java Wed Sep 15 21:24:28 2010
@@ -578,7 +578,8 @@ public class LinkcheckReport
         }
 
         // MLINKCHECK-1
-        if ( clone.getOriginalModel().getReporting() == null ) {
+        if ( clone.getOriginalModel().getReporting() == null )
+        {
             clone.getOriginalModel().setReporting( new Reporting() );
         }