You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/22 17:44:47 UTC

[08/10] incubator-ignite git commit: # IGNITE-709 Bug Fix: ClassCastException.

# IGNITE-709 Bug Fix: ClassCastException.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f2e0fc22
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f2e0fc22
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f2e0fc22

Branch: refs/heads/ignite-23
Commit: f2e0fc2252d604e0d8ebff14272554dd5e8188fb
Parents: c981982
Author: sevdokimov <se...@gridgain.com>
Authored: Fri May 22 17:38:35 2015 +0300
Committer: sevdokimov <se...@gridgain.com>
Committed: Fri May 22 17:38:35 2015 +0300

----------------------------------------------------------------------
 .../cache/query/continuous/CacheContinuousQueryManager.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f2e0fc22/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryManager.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryManager.java
index 2dd8830..97fd7f3 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryManager.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryManager.java
@@ -745,7 +745,7 @@ public class CacheContinuousQueryManager extends GridCacheManagerAdapter {
         /** {@inheritDoc} */
         @SuppressWarnings("unchecked")
         @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
-            impl = (CacheEntryEventSerializableFilter)in.readObject();
+            impl = (CacheEntryEventFilter)in.readObject();
             types = in.readByte();
         }