Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 0e955bc5d -> 6985c0975
Fixing 3.0.x build failures Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/6985c097 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6985c097 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6985c097 Branch: refs/heads/3.0.x-fixes Commit: 6985c097517b474911611d64637092d67262a0dc Parents: 0e955bc Author: Sergey Beryozkin <[email protected]> Authored: Mon Apr 3 14:24:39 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Apr 3 14:24:39 2017 +0100 ---------------------------------------------------------------------- .../apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java | 4 ++-- .../cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/6985c097/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java index f77a429..4784856 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/FailoverWebClientTest.java @@ -55,7 +55,7 @@ public class FailoverWebClientTest extends AbstractBusClientServerTestBase { FailoverFeature failoverFeature = new FailoverFeature(); SequentialStrategy strategy = new SequentialStrategy(); - List<String> addresses = new ArrayList<>(); + List<String> addresses = new ArrayList<String>(); addresses.add("http://localhost:" + PORT2 + "/bookstore"); addresses.add("http://localhost:" + PORT3 + "/bookstore"); strategy.setAlternateAddresses(addresses); @@ -80,4 +80,4 @@ public class FailoverWebClientTest extends AbstractBusClientServerTestBase { assertEquals("root", b.getName()); } -} \ No newline at end of file +} http://git-wip-us.apache.org/repos/asf/cxf/blob/6985c097/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java index 03ce218..df1bf7d 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorWebClientTest.java @@ -57,7 +57,7 @@ public class LoadDistributorWebClientTest extends AbstractBusClientServerTestBas LoadDistributorFeature feature = new LoadDistributorFeature(); SequentialStrategy strategy = new SequentialStrategy(); - List<String> addresses = new ArrayList<>(); + List<String> addresses = new ArrayList<String>(); addresses.add(address); addresses.add("http://localhost:" + PORT2 + "/bookstore"); strategy.setAlternateAddresses(addresses); @@ -77,4 +77,4 @@ public class LoadDistributorWebClientTest extends AbstractBusClientServerTestBas } -} \ No newline at end of file +}
