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 2006/09/12 05:06:46 UTC

svn commit: r442430 - /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java

Author: brianf
Date: Mon Sep 11 20:06:46 2006
New Revision: 442430

URL: http://svn.apache.org/viewvc?view=rev&rev=442430
Log:
[MDEP-21] & [MDEP-22] removed testing print out

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java

Modified: maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java?view=diff&rev=442430&r1=442429&r2=442430
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/filters/ScopeFilter.java Mon Sep 11 20:06:46 2006
@@ -85,7 +85,6 @@
                     Artifact artifact = (Artifact) iter.next();
                     if ( !saf.include( artifact ) )
                     {
-                        System.out.println(artifact.getScope());
                         results.add( artifact );
                     }
                 }