From commits-return-32740-apmail-cxf-commits-archive=cxf.apache.org@cxf.apache.org Mon Jun 23 01:33:09 2014 Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7DED31129F for ; Mon, 23 Jun 2014 01:33:09 +0000 (UTC) Received: (qmail 35761 invoked by uid 500); 23 Jun 2014 01:33:09 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 35574 invoked by uid 500); 23 Jun 2014 01:33:09 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 35528 invoked by uid 99); 23 Jun 2014 01:33:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jun 2014 01:33:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F1AF4886A0B; Mon, 23 Jun 2014 01:33:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dsosnoski@apache.org To: commits@cxf.apache.org Date: Mon, 23 Jun 2014 01:33:10 -0000 Message-Id: <4be7464a5460442a99b01ffce8fd34a6@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/5] git commit: Eliminate println()s used for looking at callback ordering issues. Eliminate println()s used for looking at callback ordering issues. Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/0494f762 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/0494f762 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/0494f762 Branch: refs/heads/master Commit: 0494f762414f065b8858b7b279e7db9de3660b3f Parents: e8abc3b Author: dsosnoski Authored: Mon May 26 19:50:57 2014 +1200 Committer: dsosnoski Committed: Sun Jun 22 20:35:59 2014 +1200 ---------------------------------------------------------------------- .../org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/0494f762/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java ---------------------------------------------------------------------- diff --git a/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java b/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java index 0e7111a..2e42047 100644 --- a/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java +++ b/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/MessageCallbackOnewayTest.java @@ -356,7 +356,6 @@ public class MessageCallbackOnewayTest extends AbstractBusClientServerTestBase { synchronized (callbacks) { callbacks.add(new Callback(true, msgNum)); callbacks.notifyAll(); - System.out.println("Message accepted " + msgNum); } } @@ -365,7 +364,6 @@ public class MessageCallbackOnewayTest extends AbstractBusClientServerTestBase { synchronized (callbacks) { callbacks.add(new Callback(false, msgNum)); callbacks.notifyAll(); - System.out.println("Message acknowledged " + msgNum); } }