o get rid of debug information

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@727637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2008-12-18 04:24:27 +00:00
parent 854a44adf0
commit cce3456998
1 changed files with 0 additions and 3 deletions

View File

@ -53,7 +53,6 @@ public class PomConstructionTest
throws Exception
{
File pom = new File( testDirectory, "micromailer/micromailer-1.0.3.pom" );
System.out.println( pom.exists());
PomArtifactResolver resolver = artifactResolver( "micromailer" );
PomClassicDomainModel model = projectBuilder.buildModel( pom, null, resolver );
// This should be 2
@ -93,7 +92,6 @@ public class PomConstructionTest
{
int i = fileName.indexOf( ".pom" );
String id = fileName.substring( 0, i );
System.out.println( id );
artifacts.put( id, file );
}
}
@ -108,7 +106,6 @@ public class PomConstructionTest
throws IOException
{
String id = artifact.getArtifactId() + "-" + artifact.getVersion();
System.out.println( id );
artifact.setFile( artifacts.get( id ) );
}
}