You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2009/04/26 18:39:28 UTC

svn commit: r768722 - /maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

Author: jvanzyl
Date: Sun Apr 26 16:39:27 2009
New Revision: 768722

URL: http://svn.apache.org/viewvc?rev=768722&view=rev
Log:
o get rid of debug output

Modified:
    maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

Modified: maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java?rev=768722&r1=768721&r2=768722&view=diff
==============================================================================
--- maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java (original)
+++ maven/components/branches/MNG-2766/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java Sun Apr 26 16:39:27 2009
@@ -142,8 +142,6 @@
         }
         else if ( !artifact.isResolved() )
         {
-            System.out.println( "looking!" );
-            
             // ----------------------------------------------------------------------
             // Check for the existence of the artifact in the specified local
             // ArtifactRepository. If it is present then simply return as the
@@ -152,7 +150,6 @@
 
             String localPath = localRepository.pathOf( artifact );
 
-            System.out.println( "3 " + localPath );
             artifact.setFile( new File( localRepository.getBasedir(), localPath ) );
 
             transformationManager.transformForResolve( artifact, remoteRepositories, localRepository );
@@ -161,9 +158,6 @@
 
             destination = artifact.getFile();
 
-            System.out.println( "4 " + destination );
-            System.out.println( "5 " + destination.exists() );
-            
             boolean resolved = false;
 
             // There are three conditions in which we'll go after the artifact here:
@@ -189,7 +183,6 @@
                     }
                     else
                     {
-                        System.out.println( "trying to get artifact.");
                         wagonManager.getArtifact( artifact, remoteRepositories, downloadMonitor, force );
                     }