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 2013/03/14 21:04:18 UTC

[32/50] [abbrv] git commit: removed stdout output

removed stdout output

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1412263 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/784e8c3a
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/784e8c3a
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/784e8c3a

Branch: refs/heads/eclipse-aether
Commit: 784e8c3a90ba74eb1d55a9dd746ed41094b52265
Parents: cbcda62
Author: Herve Boutemy <hb...@apache.org>
Authored: Wed Nov 21 20:00:50 2012 +0000
Committer: Herve Boutemy <hb...@apache.org>
Committed: Wed Nov 21 20:00:50 2012 +0000

----------------------------------------------------------------------
 .../building/DefaultModelBuilderFactoryTest.java   |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/784e8c3a/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
----------------------------------------------------------------------
diff --git a/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java b/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
index 142e062..90b65a4 100644
--- a/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
+++ b/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
@@ -52,7 +52,6 @@ public class DefaultModelBuilderFactoryTest
         assertNotNull( result.getEffectiveModel() );
         assertEquals( "activated", result.getEffectiveModel().getProperties().get( "profile.file" ) );
         Xpp3Dom conf = (Xpp3Dom) result.getEffectiveModel().getBuild().getPlugins().get( 0 ).getConfiguration();
-        System.out.println( conf );
         assertEquals( "1.5", conf.getChild( "source" ).getValue() );
         assertEquals( "  1.5  ", conf.getChild( "target" ).getValue() );
     }