#ignite-683: Remove filters from GridCacheProjectionImpl.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/4596bb26 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/4596bb26 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/4596bb26 Branch: refs/heads/ignite-218 Commit: 4596bb26db4c706cb0871357f0f4799d05b2b673 Parents: bfed4b7 Author: ivasilinets <ivasilin...@gridgain.com> Authored: Mon Apr 13 12:49:13 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Mon Apr 13 12:49:13 2015 +0300 ---------------------------------------------------------------------- .../processors/cache/GridCacheProjectionImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/4596bb26/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProjectionImpl.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProjectionImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProjectionImpl.java index 656e4a5..3eec176 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProjectionImpl.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProjectionImpl.java @@ -317,12 +317,12 @@ public class GridCacheProjectionImpl<K, V> implements GridCacheProjectionEx<K, V /** {@inheritDoc} */ @Override public IgniteInternalFuture<V> putAsync(K key, V val) { - return cache.putAsync0(key, val, CU.empty0()); + return cache.putAsync(key, val); } /** {@inheritDoc} */ @Override public boolean putx(K key, V val) throws IgniteCheckedException { - return cache.putxAsync0(key, val, CU.empty0()).get(); + return cache.putx(key, val); } /** {@inheritDoc} */ @@ -379,7 +379,7 @@ public class GridCacheProjectionImpl<K, V> implements GridCacheProjectionEx<K, V /** {@inheritDoc} */ @Override public IgniteInternalFuture<Boolean> putxAsync(K key, V val) { - return cache.putxAsync0(key, val, CU.empty0()); + return cache.putxAsync(key, val); } /** {@inheritDoc} */ @@ -441,7 +441,7 @@ public class GridCacheProjectionImpl<K, V> implements GridCacheProjectionEx<K, V /** {@inheritDoc} */ @Override public IgniteInternalFuture<?> putAllAsync(Map<? extends K, ? extends V> m) { - return cache.putAllAsync(m, CU.empty0()); + return cache.putAllAsync(m); } /** {@inheritDoc} */ @@ -561,7 +561,7 @@ public class GridCacheProjectionImpl<K, V> implements GridCacheProjectionEx<K, V /** {@inheritDoc} */ @Override public IgniteInternalFuture<V> removeAsync(K key) { - return cache.removeAsync(key, CU.empty0()); + return cache.removeAsync(key); } /** {@inheritDoc} */