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 E349518C3C for ; Thu, 21 May 2015 07:53:10 +0000 (UTC) Received: (qmail 33853 invoked by uid 500); 21 May 2015 07:53:10 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 33822 invoked by uid 500); 21 May 2015 07:53:10 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 33813 invoked by uid 99); 21 May 2015 07:53:10 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 May 2015 07:53:10 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 6333DC7265 for ; Thu, 21 May 2015 07:53:10 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id lVO7a_PrXKqK for ; Thu, 21 May 2015 07:53:09 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 3B7A248495 for ; Thu, 21 May 2015 07:53:02 +0000 (UTC) Received: (qmail 31625 invoked by uid 99); 21 May 2015 07:53:01 -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; Thu, 21 May 2015 07:53:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D53F8E3A56; Thu, 21 May 2015 07:53:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Date: Thu, 21 May 2015 07:53:19 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [20/28] incubator-ignite git commit: # IGNITE-709 Cleanup code: remove unused method. # IGNITE-709 Cleanup code: remove unused method. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2c219994 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2c219994 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2c219994 Branch: refs/heads/ignite-23 Commit: 2c21999460ea485d79cfe8f2ea3f60fdf7a48c71 Parents: bc2269d Author: sevdokimov Authored: Wed May 20 17:21:09 2015 +0300 Committer: sevdokimov Committed: Wed May 20 17:31:01 2015 +0300 ---------------------------------------------------------------------- .../internal/processors/igfs/IgfsCommonAbstractTest.java | 10 ---------- .../ignite/testframework/junits/GridAbstractTest.java | 11 ----------- 2 files changed, 21 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2c219994/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsCommonAbstractTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsCommonAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsCommonAbstractTest.java index fa7f048..e879130 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsCommonAbstractTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsCommonAbstractTest.java @@ -46,16 +46,6 @@ public class IgfsCommonAbstractTest extends GridCommonAbstractTest { } /** {@inheritDoc} */ - @Override protected IgniteConfiguration getConfiguration(IgniteTestResources rsrcs) throws Exception { - IgniteConfiguration cfg = super.getConfiguration(rsrcs); - - cfg.setPeerClassLoadingEnabled(false); - cfg.setLocalHost("127.0.0.1"); - - return cfg; - } - - /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String gridName, IgniteTestResources rsrcs) throws Exception { IgniteConfiguration cfg = super.getConfiguration(gridName, rsrcs); http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2c219994/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java index 0ecee09..2cae73a 100644 --- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java +++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java @@ -1019,17 +1019,6 @@ public abstract class GridAbstractTest extends TestCase { } /** - * This method should be overridden by subclasses to change configuration parameters. - * - * @return Grid configuration used for starting of grid. - * @param rsrcs Resources. - * @throws Exception If failed. - */ - protected IgniteConfiguration getConfiguration(IgniteTestResources rsrcs) throws Exception { - return getConfiguration(getTestGridName(), rsrcs); - } - - /** * @return Generated unique test grid name. */ public String getTestGridName() {