o get rid of debug output

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@768722 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2009-04-26 16:39:27 +00:00
parent 755afec417
commit d94c0e791a
1 changed files with 0 additions and 7 deletions

View File

@ -142,8 +142,6 @@ public class DefaultArtifactResolver
}
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 @@ public class DefaultArtifactResolver
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 @@ public class DefaultArtifactResolver
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 @@ public class DefaultArtifactResolver
}
else
{
System.out.println( "trying to get artifact.");
wagonManager.getArtifact( artifact, remoteRepositories, downloadMonitor, force );
}