Author: ningjiang
Date: Thu Sep 14 19:05:20 2006
New Revision: 446461

URL: http://svn.apache.org/viewvc?view=rev&rev=446461
Log:
remove the system.out.println in ServerRegistryImpl

Modified:
    
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ServerRegistryImpl.java

Modified: 
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ServerRegistryImpl.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ServerRegistryImpl.java?view=diff&rev=446461&r1=446460&r2=446461
==============================================================================
--- 
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ServerRegistryImpl.java
 (original)
+++ 
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ServerRegistryImpl.java
 Thu Sep 14 19:05:20 2006
@@ -66,8 +66,7 @@
 
     public void preShutdown() {
         // Shutdown the service       
-        for (Server server : serversList) {
-            System.out.println("call the server stop");
+        for (Server server : serversList) {            
             server.stop();
         }
     }


Reply via email to