Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 85535 invoked from network); 15 Jun 2007 05:39:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Jun 2007 05:39:28 -0000 Received: (qmail 83873 invoked by uid 500); 15 Jun 2007 05:39:31 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 83813 invoked by uid 500); 15 Jun 2007 05:39:30 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 83804 invoked by uid 99); 15 Jun 2007 05:39:30 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 22:39:30 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 22:39:26 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id DFA431A981A; Thu, 14 Jun 2007 22:39:06 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r547537 - /incubator/cxf/trunk/testutils/src/main/java/org/apache/hello_world/jbi/GreeterImpl.java Date: Fri, 15 Jun 2007 05:39:05 -0000 To: cxf-commits@incubator.apache.org From: mmao@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070615053906.DFA431A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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);