Repository: camel Updated Branches: refs/heads/camel-2.14.x e137f17ea -> 6ecbdbca5
CAMEL-8718 Fixed the build error in camel-2.14.x Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/6ecbdbca Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/6ecbdbca Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/6ecbdbca Branch: refs/heads/camel-2.14.x Commit: 6ecbdbca5cce61a12245776431018fceb478baf6 Parents: e137f17 Author: Willem Jiang <willem.ji...@gmail.com> Authored: Mon May 11 11:26:23 2015 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Mon May 11 11:26:23 2015 +0800 ---------------------------------------------------------------------- .../file/remote/FtpBadLoginInProducerConnectionLeakTest.java | 2 +- .../file/remote/FtpBadLoginMockNoopConnectionLeakTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/6ecbdbca/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginInProducerConnectionLeakTest.java ---------------------------------------------------------------------- diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginInProducerConnectionLeakTest.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginInProducerConnectionLeakTest.java index e3314d0..92d223f 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginInProducerConnectionLeakTest.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginInProducerConnectionLeakTest.java @@ -33,7 +33,7 @@ public class FtpBadLoginInProducerConnectionLeakTest extends FtpServerTestSuppor /** * Mapping of socket hashcode to two element tab ([connect() called, close() called]) */ - private Map<Integer, boolean[]> socketAudits = new HashMap<>(); + private Map<Integer, boolean[]> socketAudits = new HashMap<Integer, boolean[]>(); private String getFtpUrl() { return "ftp://dummy@localhost:" + getPort() + "/badlogin?password=cantremeber&maximumReconnectAttempts=3" + http://git-wip-us.apache.org/repos/asf/camel/blob/6ecbdbca/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginMockNoopConnectionLeakTest.java ---------------------------------------------------------------------- diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginMockNoopConnectionLeakTest.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginMockNoopConnectionLeakTest.java index 0b895f5..3686f3c 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginMockNoopConnectionLeakTest.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpBadLoginMockNoopConnectionLeakTest.java @@ -57,7 +57,7 @@ public class FtpBadLoginMockNoopConnectionLeakTest extends FtpServerTestSupport /** * Mapping of socket hashcode to two element tab ([connect() called, close() called]) */ - private Map<Integer, boolean[]> socketAudits = new HashMap<>(); + private Map<Integer, boolean[]> socketAudits = new HashMap<Integer, boolean[]>(); @Override protected JndiRegistry createRegistry() throws Exception {