Repository: incubator-ignite Updated Branches: refs/heads/ignite-709 b58752d18 -> cc97b6375
# IGNITE-709 Cleanup code. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/b2be10c4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/b2be10c4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/b2be10c4 Branch: refs/heads/ignite-709 Commit: b2be10c48396263b1e4e9d193bc9e137317a2134 Parents: b58752d Author: sevdokimov <[email protected]> Authored: Mon Apr 13 13:08:21 2015 +0300 Committer: sevdokimov <[email protected]> Committed: Mon Apr 13 13:08:21 2015 +0300 ---------------------------------------------------------------------- .../cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b2be10c4/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java index 2b5a42d..d96f7a8 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java @@ -70,7 +70,7 @@ public class GridCacheTcpClientDiscoveryMultiThreadedTest extends GridCacheAbstr // Filling configuration for client nodes if (client) { TcpDiscoveryVmIpFinder clientFinder = new TcpDiscoveryVmIpFinder(); - ArrayList<String> addrs = new ArrayList<>(ipFinder.getRegisteredAddresses().size()); + Collection<String> addrs = new ArrayList<>(ipFinder.getRegisteredAddresses().size()); for (InetSocketAddress sockAddr : ipFinder.getRegisteredAddresses()) addrs.add(sockAddr.getHostString() + ":" + sockAddr.getPort());
