You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sp...@apache.org on 2006/04/04 21:59:10 UTC

svn commit: r391394 - /geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java

Author: sppatel
Date: Tue Apr  4 12:59:08 2006
New Revision: 391394

URL: http://svn.apache.org/viewcvs?rev=391394&view=rev
Log:
take out sysouts

Modified:
    geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java

Modified: geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java
URL: http://svn.apache.org/viewcvs/geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java?rev=391394&r1=391393&r2=391394&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java (original)
+++ geronimo/devtools/eclipse-plugin/trunk/maven-plugins/maven-emf-plugin/src/main/java/org/apache/emf/plugin/LaunchOSGIMojo.java Tue Apr  4 12:59:08 2006
@@ -86,7 +86,6 @@
 		validate();
 
 		boolean keepFrameworkAlive = keepFrameworkAlive();
-		System.out.println("keepFrameworkAlive = " + keepFrameworkAlive);
 
 		String[] args = getArguments();
 		if (args == null)
@@ -193,7 +192,6 @@
 
 	private int getTotalExecutions() {
 		if (!getPluginContext().containsKey(TOTAL_EXECUTIONS)) {
-			System.out.println("totalExecutions not set");
 			int totalExecutions = 0;
 			List plugins = mavenProject.getBuild().getPlugins();
 			Iterator i = plugins.iterator();