You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/07/28 19:15:20 UTC

svn commit: r1151934 - in /cxf/trunk: rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/ systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/

Author: dkulp
Date: Thu Jul 28 17:15:19 2011
New Revision: 1151934

URL: http://svn.apache.org/viewvc?rev=1151934&view=rev
Log:
Remove some printlns in the tests

Modified:
    cxf/trunk/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngine.java
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AbstractSpringServer.java
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AtomBookServer.java
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStore.java

Modified: cxf/trunk/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngine.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngine.java?rev=1151934&r1=1151933&r2=1151934&view=diff
==============================================================================
--- cxf/trunk/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngine.java (original)
+++ cxf/trunk/rt/management-web/src/main/java/org/apache/cxf/management/web/logging/atom/AtomPushEngine.java Thu Jul 28 17:15:19 2011
@@ -101,15 +101,15 @@ final class AtomPushEngine {
     private boolean isValid() {
         if (deliverer == null) {
             // TODO report cause
-            System.err.println("deliverer is not set");
+            ///System.err.println("deliverer is not set");
             return false;
         }
         if (converter == null) {
-            System.err.println("converter is not set");
+            //System.err.println("converter is not set");
             return false;
         }
         if (executor.isShutdown()) {
-            System.err.println("engine shutdown");
+            //System.err.println("engine shutdown");
             return false;
         }
         return true;

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AbstractSpringServer.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AbstractSpringServer.java?rev=1151934&r1=1151933&r2=1151934&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AbstractSpringServer.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AbstractSpringServer.java Thu Jul 28 17:15:19 2011
@@ -55,8 +55,6 @@ public abstract class AbstractSpringServ
     }
     
     protected void run() {
-        System.out.println("Starting Server");
-
         server = new org.eclipse.jetty.server.Server();
 
         SelectChannelConnector connector = new SelectChannelConnector();

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AtomBookServer.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AtomBookServer.java?rev=1151934&r1=1151933&r2=1151934&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AtomBookServer.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/AtomBookServer.java Thu Jul 28 17:15:19 2011
@@ -34,8 +34,6 @@ public class AtomBookServer extends Abst
     private org.eclipse.jetty.server.Server server;
     
     protected void run() {
-        System.out.println("Starting Server");
-
         server = new org.eclipse.jetty.server.Server();
 
         SelectChannelConnector connector = new SelectChannelConnector();

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStore.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStore.java?rev=1151934&r1=1151933&r2=1151934&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStore.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/BookStore.java Thu Jul 28 17:15:19 2011
@@ -105,12 +105,12 @@ public class BookStore {
     
     @PostConstruct
     public void postConstruct() {
-        System.out.println("PostConstruct called");
+        //System.out.println("PostConstruct called");
     }
     
     @PreDestroy
     public void preDestroy() {
-        System.out.println("PreDestroy called");
+        //System.out.println("PreDestroy called");
     }
     
     @GET
@@ -126,7 +126,7 @@ public class BookStore {
     @Path("emptypost")
     public void emptypost() {
         String uri = ui.getAbsolutePath().toString();
-        System.out.println(uri);
+        //System.out.println(uri);
         if (uri.endsWith("/")) {
             throw new WebApplicationException(400);
         }