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 4E64C17679 for ; Thu, 9 Apr 2015 17:15:34 +0000 (UTC) Received: (qmail 45569 invoked by uid 500); 9 Apr 2015 17:15:34 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 45540 invoked by uid 500); 9 Apr 2015 17:15:34 -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 45531 invoked by uid 99); 9 Apr 2015 17:15:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Apr 2015 17:15:34 +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; Thu, 09 Apr 2015 17:15:32 +0000 Received: (qmail 43038 invoked by uid 99); 9 Apr 2015 17:15:12 -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, 09 Apr 2015 17:15:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2FBB6E000B; Thu, 9 Apr 2015 17:15:12 +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 Message-Id: <7bbbe82ac73f4f748c0f0207a8360bbf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-ignite git commit: #ignite-683: Remove unused methods. Date: Thu, 9 Apr 2015 17:15:12 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-683-2 8cacf085b -> 51416e9c4 #ignite-683: Remove unused methods. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/51416e9c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/51416e9c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/51416e9c Branch: refs/heads/ignite-683-2 Commit: 51416e9c408bd04a9c691e3f79303d09d2c2f6bb Parents: 8cacf08 Author: ivasilinets Authored: Thu Apr 9 20:15:02 2015 +0300 Committer: ivasilinets Committed: Thu Apr 9 20:15:02 2015 +0300 ---------------------------------------------------------------------- .../cache/distributed/near/GridNearCacheAdapter.java | 14 -------------- 1 file changed, 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/51416e9c/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearCacheAdapter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearCacheAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearCacheAdapter.java index 7fe0691..95ea9a1 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearCacheAdapter.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearCacheAdapter.java @@ -377,25 +377,11 @@ public abstract class GridNearCacheAdapter extends GridDistributedCacheAda } /** {@inheritDoc} */ - @Override public Set primaryKeySet(@Nullable CacheEntryPredicate... filter) { - return new GridCacheKeySet<>(ctx, primaryEntrySet(filter), null); - } - - /** {@inheritDoc} */ @Override public Collection values(CacheEntryPredicate... filter) { return new GridCacheValueCollection<>(ctx, entrySet(filter), ctx.vararg(F.cacheHasPeekValue())); } /** {@inheritDoc} */ - @Override public Collection primaryValues(@Nullable CacheEntryPredicate... filter) { - return new GridCacheValueCollection<>( - ctx, - entrySet(filter), - ctx.vararg( - CU.cachePrimary0(ctx.grid().affinity(ctx.name()), ctx.localNode()))); - } - - /** {@inheritDoc} */ @Override public boolean evict(K key, @Nullable CacheEntryPredicate[] filter) { // Use unary 'and' to make sure that both sides execute. return super.evict(key, filter) & dht().evict(key, filter);