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 AFDC8107E8 for ; Tue, 3 Mar 2015 08:54:57 +0000 (UTC) Received: (qmail 85639 invoked by uid 500); 3 Mar 2015 08:54:57 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 85605 invoked by uid 500); 3 Mar 2015 08:54:57 -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 85596 invoked by uid 99); 3 Mar 2015 08:54:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Mar 2015 08:54:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 03 Mar 2015 08:54:34 +0000 Received: (qmail 83579 invoked by uid 99); 3 Mar 2015 08:54:31 -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; Tue, 03 Mar 2015 08:54:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4D765E1023; Tue, 3 Mar 2015 08:54:31 +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: Tue, 03 Mar 2015 08:54:41 -0000 Message-Id: <652096fcdc8344f9a29e48c509da3930@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [11/50] incubator-ignite git commit: #ignite-237: remove GridAffinityProcessorConsistentHashSelfTest. X-Virus-Checked: Checked by ClamAV on apache.org #ignite-237: remove GridAffinityProcessorConsistentHashSelfTest. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/02d46d7b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/02d46d7b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/02d46d7b Branch: refs/heads/sprint-2 Commit: 02d46d7bcae3d1576cbcdf43413118c4dd9f1056 Parents: 399d2b9 Author: ivasilinets Authored: Thu Feb 26 15:48:54 2015 +0300 Committer: ivasilinets Committed: Thu Feb 26 15:48:54 2015 +0300 ---------------------------------------------------------------------- ...AffinityProcessorConsistentHashSelfTest.java | 31 -------------------- 1 file changed, 31 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/02d46d7b/modules/core/src/test/java/org/apache/ignite/internal/processors/affinity/GridAffinityProcessorConsistentHashSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/affinity/GridAffinityProcessorConsistentHashSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/affinity/GridAffinityProcessorConsistentHashSelfTest.java deleted file mode 100644 index f1a2cde..0000000 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/affinity/GridAffinityProcessorConsistentHashSelfTest.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.internal.processors.affinity; - -import org.apache.ignite.cache.affinity.*; -import org.apache.ignite.cache.affinity.consistenthash.*; - -/** - * Tests consistent hash affinity function. - */ -public class GridAffinityProcessorConsistentHashSelfTest extends GridAffinityProcessorAbstractSelfTest { - /** {@inheritDoc} */ - @Override protected CacheAffinityFunction affinityFunction() { - return new CacheConsistentHashAffinityFunction(); - } -}