# sprint-1 minor
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/4ffb6dba Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/4ffb6dba Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/4ffb6dba Branch: refs/heads/sprint-1-release Commit: 4ffb6dba0f2ddfab75a57500c61dc39ef4351d6f Parents: bbf5163 Author: sboikov <sboi...@gridgain.com> Authored: Mon Feb 16 13:42:50 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Mon Feb 16 13:42:50 2015 +0300 ---------------------------------------------------------------------- .../cache/distributed/dht/atomic/GridDhtAtomicCache.java | 2 +- .../processors/cache/transactions/IgniteTxLocalAdapter.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/4ffb6dba/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java index 2a8a2c7..b90d78e 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java @@ -1978,7 +1978,7 @@ public class GridDhtAtomicCache<K, V> extends GridDhtCacheAdapter<K, V> { assert op == DELETE : op; // Old value should be already loaded for 'CacheInterceptor.onBeforeRemove'. - ctx.config().<K, V>getInterceptor().onAfterRemove(entry.key(), updRes.oldValue()); + ctx.config().getInterceptor().onAfterRemove(entry.key(), updRes.oldValue()); } } http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/4ffb6dba/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/transactions/IgniteTxLocalAdapter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/transactions/IgniteTxLocalAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/transactions/IgniteTxLocalAdapter.java index 0856f67..8ffe224 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/transactions/IgniteTxLocalAdapter.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/transactions/IgniteTxLocalAdapter.java @@ -577,7 +577,7 @@ public abstract class IgniteTxLocalAdapter<K, V> extends IgniteTxAdapter<K, V> if (intercept) { V old = e.cached().rawGetOrUnmarshal(true); - IgniteBiTuple<Boolean, V> t = cacheCtx.config().<K, V>getInterceptor() + IgniteBiTuple<Boolean, V> t = cacheCtx.config().getInterceptor() .onBeforeRemove(key, old); if (cacheCtx.cancelRemove(t))