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 769FA172CA for ; Mon, 27 Apr 2015 14:51:11 +0000 (UTC) Received: (qmail 17819 invoked by uid 500); 27 Apr 2015 14:51:11 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 17788 invoked by uid 500); 27 Apr 2015 14:51:11 -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 17779 invoked by uid 99); 27 Apr 2015 14:51:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2015 14:51:11 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2015 14:51:05 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 9487320561 for ; Mon, 27 Apr 2015 14:50:45 +0000 (UTC) Received: (qmail 17264 invoked by uid 99); 27 Apr 2015 14:50:45 -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, 27 Apr 2015 14:50:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 42B5ADFF98; Mon, 27 Apr 2015 14:50:45 +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: Mon, 27 Apr 2015 14:50:46 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] incubator-ignite git commit: #ignite-286: refactoring. X-Virus-Checked: Checked by ClamAV on apache.org #ignite-286: refactoring. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/83f97214 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/83f97214 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/83f97214 Branch: refs/heads/ignite-286 Commit: 83f9721497daf154811f1f7f0e5a975061a9176a Parents: 027da92 Author: ivasilinets Authored: Mon Apr 27 17:50:10 2015 +0300 Committer: ivasilinets Committed: Mon Apr 27 17:50:10 2015 +0300 ---------------------------------------------------------------------- .../internal/processors/cache/query/GridCacheQueryManager.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/83f97214/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryManager.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryManager.java index 118e15f..fe6b29a 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/GridCacheQueryManager.java @@ -933,10 +933,8 @@ public abstract class GridCacheQueryManager extends GridCacheManagerAdapte * @param qry Query. * @param backups Include backups. * @return Offheap iterator. - * @throws IgniteCheckedException If failed. */ - private GridIterator> offheapIterator(GridCacheQueryAdapter qry, boolean backups) - throws IgniteCheckedException { + private GridIterator> offheapIterator(GridCacheQueryAdapter qry, boolean backups) { IgniteBiPredicate filter = qry.scanFilter(); if (cctx.offheapTiered() && filter != null) {