#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 <[email protected]> Authored: Mon Apr 27 17:50:10 2015 +0300 Committer: ivasilinets <[email protected]> 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<K, V> extends GridCacheManagerAdapte * @param qry Query. * @param backups Include backups. * @return Offheap iterator. - * @throws IgniteCheckedException If failed. */ - private GridIterator<IgniteBiTuple<K, V>> offheapIterator(GridCacheQueryAdapter<?> qry, boolean backups) - throws IgniteCheckedException { + private GridIterator<IgniteBiTuple<K, V>> offheapIterator(GridCacheQueryAdapter<?> qry, boolean backups) { IgniteBiPredicate<K, V> filter = qry.scanFilter(); if (cctx.offheapTiered() && filter != null) {
