You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by mm...@apache.org on 2007/06/15 07:39:05 UTC

svn commit: r547537 - /incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java

Author: mmao
Date: Thu Jun 14 22:39:02 2007
New Revision: 547537

URL: http://svn.apache.org/viewvc?view=rev&rev=547537
Log:
* No output during tests


Modified:
    incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java

Modified: incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java?view=diff&rev=547537&r1=547536&r2=547537
==============================================================================
--- incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java (original)
+++ incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java Thu Jun 14 22:39:02 2007
@@ -32,21 +32,17 @@
 public class GreeterImpl implements Greeter {
 
     public String sayHi() {
-        System.out.println("Call sayHi here ");
         return "Bonjour";
     }
 
     public String greetMe(String requestType) {
-        System.out.println("Reached here :" + requestType);
         return "Hello " + requestType;
     }
 
     public void greetMeOneWay(String requestType) {
-        System.out.println("*********  greetMeOneWay: " + requestType);        
     }
 
     public void pingMe() throws PingMeFault {
-        System.out.println("Reached pingMe");
         FaultDetail faultDetail = new FaultDetail();
         faultDetail.setMajor((short)2);
         faultDetail.setMinor((short)1);