You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2005/10/24 01:32:10 UTC

svn commit: r327883 - /maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java

Author: brett
Date: Sun Oct 23 16:32:05 2005
New Revision: 327883

URL: http://svn.apache.org/viewcvs?rev=327883&view=rev
Log:
avoid "unused" error

Modified:
    maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java

Modified: maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java?rev=327883&r1=327882&r2=327883&view=diff
==============================================================================
--- maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java (original)
+++ maven/components/trunk/maven-plugin-tools/maven-plugin-tools-java/src/test/resources/source/JavaExtractorTestTwo.java Sun Oct 23 16:32:05 2005
@@ -19,10 +19,14 @@
     private String[] project;
 
     public JavaExtractorTestTwo()
-    {
+    {        
     }
 
     public void execute()
     {
+        if ( getLog() != null )
+        {
+            getLog().info( "projects: " + project );
+        }
     }
 }