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 2008/12/18 05:24:27 UTC

svn commit: r727637 - /maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java

Author: jvanzyl
Date: Wed Dec 17 20:24:27 2008
New Revision: 727637

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

Modified:
    maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java

Modified: maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java?rev=727637&r1=727636&r2=727637&view=diff
==============================================================================
--- maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java (original)
+++ maven/components/trunk/maven-project/src/test/java/org/apache/maven/project/builder/PomConstructionTest.java Wed Dec 17 20:24:27 2008
@@ -53,7 +53,6 @@
         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 @@
                 {
                     int i = fileName.indexOf( ".pom" );                    
                     String id = fileName.substring( 0, i );
-                    System.out.println( id );
                     artifacts.put( id, file );
                 }
             }
@@ -108,7 +106,6 @@
             throws IOException
         {
             String id = artifact.getArtifactId() + "-" + artifact.getVersion();
-            System.out.println( id );
             artifact.setFile( artifacts.get( id  ) );
         }
     }