You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2009/08/14 09:38:59 UTC

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

Author: hboutemy
Date: Fri Aug 14 07:38:59 2009
New Revision: 804103

URL: http://svn.apache.org/viewvc?rev=804103&view=rev
Log:
avoid nulling a component reference (which is also useless since it is referenced by plexus-components too)

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=804103&r1=804102&r2=804103&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 Fri Aug 14 07:38:59 2009
@@ -454,7 +454,6 @@
             generateReport( locale, result );
             // free memory
             result = null;
-            linkCheck = null;
         }
     }