Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C0976200CBC for ; Tue, 20 Jun 2017 09:12:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BFDEE160BE1; Tue, 20 Jun 2017 07:12:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1277B160BD3 for ; Tue, 20 Jun 2017 09:12:54 +0200 (CEST) Received: (qmail 11305 invoked by uid 500); 20 Jun 2017 07:12:54 -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 11295 invoked by uid 99); 20 Jun 2017 07:12:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2017 07:12:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CE074DFA6C; Tue, 20 Jun 2017 07:12:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cschneider@apache.org To: commits@cxf.apache.org Message-Id: <77028151b9bd4071a348da791af18732@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-7414] Fix compile for jdk7 Date: Tue, 20 Jun 2017 07:12:53 +0000 (UTC) archived-at: Tue, 20 Jun 2017 07:12:55 -0000 Repository: cxf Updated Branches: refs/heads/master 3dfbf3062 -> 8fe542285 [CXF-7414] Fix compile for jdk7 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/8fe54228 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/8fe54228 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/8fe54228 Branch: refs/heads/master Commit: 8fe5422852cad92e975b9bb334d0d8c4eb08c304 Parents: 3dfbf30 Author: Christian Schneider Authored: Tue Jun 20 08:57:46 2017 +0200 Committer: Christian Schneider Committed: Tue Jun 20 08:57:46 2017 +0200 ---------------------------------------------------------------------- .../org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/8fe54228/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java ---------------------------------------------------------------------- diff --git a/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java b/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java index 9068de4..5fe933f 100644 --- a/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java +++ b/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/DeliveryAssuranceOnewayTest.java @@ -250,7 +250,7 @@ public class DeliveryAssuranceOnewayTest extends AbstractBusClientServerTestBase int num = 1; greeter.greetMe(Integer.toString(num++)); for (int c = 2; c <= numMessages; c++) { - int currentNum = num++; + final int currentNum = num++; Thread.sleep(100); executor.submit(new Runnable() {