Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3B84918129 for ; Mon, 14 Sep 2015 08:08:46 +0000 (UTC) Received: (qmail 62747 invoked by uid 500); 14 Sep 2015 08:08:42 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 62714 invoked by uid 500); 14 Sep 2015 08:08:42 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 62705 invoked by uid 99); 14 Sep 2015 08:08:42 -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; Mon, 14 Sep 2015 08:08:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 57912DFBD1; Mon, 14 Sep 2015 08:08:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Message-Id: <4e4fadb3c15f4692a1c71a20981ea449@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: Minor. Date: Mon, 14 Sep 2015 08:08:42 +0000 (UTC) Repository: ignite Updated Branches: refs/heads/ignite-1.4 d07662248 -> e53191994 Minor. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e5319199 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e5319199 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e5319199 Branch: refs/heads/ignite-1.4 Commit: e53191994b48e39d1943bc2bc403dcf1a1ee1afc Parents: d076622 Author: sboikov Authored: Mon Sep 14 11:08:36 2015 +0300 Committer: sboikov Committed: Mon Sep 14 11:08:36 2015 +0300 ---------------------------------------------------------------------- .../IgniteAtomicLongChangingTopologySelfTest.java | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/e5319199/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/IgniteAtomicLongChangingTopologySelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/IgniteAtomicLongChangingTopologySelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/IgniteAtomicLongChangingTopologySelfTest.java index cee54b8..1f2e035 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/IgniteAtomicLongChangingTopologySelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/IgniteAtomicLongChangingTopologySelfTest.java @@ -62,8 +62,7 @@ public class IgniteAtomicLongChangingTopologySelfTest extends GridCommonAbstract /** * {@inheritDoc} */ - @Override - protected IgniteConfiguration getConfiguration(String gridName) throws Exception { + @Override protected IgniteConfiguration getConfiguration(String gridName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(gridName); TcpDiscoverySpi discoSpi = new TcpDiscoverySpi(); @@ -84,8 +83,7 @@ public class IgniteAtomicLongChangingTopologySelfTest extends GridCommonAbstract /** * {@inheritDoc} */ - @Override - protected void afterTest() throws Exception { + @Override protected void afterTest() throws Exception { stopAllGrids(); queue.clear(); @@ -129,8 +127,7 @@ public class IgniteAtomicLongChangingTopologySelfTest extends GridCommonAbstract IgniteInternalFuture fut = GridTestUtils.runMultiThreadedAsync(new Callable() { /** {@inheritDoc} */ - @Override - public Void call() throws Exception { + @Override public Void call() throws Exception { IgniteAtomicLong cntr = ignite(0).atomicLong(ATOMIC_LONG_NAME, 0, true); while (run.get()) @@ -173,8 +170,7 @@ public class IgniteAtomicLongChangingTopologySelfTest extends GridCommonAbstract IgniteInternalFuture fut = GridTestUtils.runMultiThreadedAsync(new Callable() { /** {@inheritDoc} */ - @Override - public Void call() throws Exception { + @Override public Void call() throws Exception { int base = idx.getAndIncrement(); try { @@ -261,8 +257,7 @@ public class IgniteAtomicLongChangingTopologySelfTest extends GridCommonAbstract private IgniteInternalFuture startNodeAndCreaterThread(final int i, final CountDownLatch startLatch, final AtomicBoolean run) throws Exception { return multithreadedAsync(new Runnable() { - @Override - public void run() { + @Override public void run() { try { Ignite ignite = startGrid(i);