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 2016/02/26 07:47:03 UTC

ignite git commit: Set serialVersionUID for CacheEntryPredicateAdapter for backward compatibility.

Repository: ignite
Updated Branches:
  refs/heads/master e1176fda8 -> 7d65ec933


Set serialVersionUID for CacheEntryPredicateAdapter for backward compatibility.


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

Branch: refs/heads/master
Commit: 7d65ec9334616a1789620c09724a64696519412a
Parents: e1176fd
Author: sboikov <sb...@gridgain.com>
Authored: Fri Feb 26 09:46:50 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Fri Feb 26 09:46:50 2016 +0300

----------------------------------------------------------------------
 .../internal/processors/cache/CacheEntryPredicateAdapter.java     | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7d65ec93/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheEntryPredicateAdapter.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheEntryPredicateAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheEntryPredicateAdapter.java
index 292ff18..3d56ee3 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheEntryPredicateAdapter.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CacheEntryPredicateAdapter.java
@@ -29,6 +29,9 @@ import org.jetbrains.annotations.Nullable;
  */
 public abstract class CacheEntryPredicateAdapter implements CacheEntryPredicate {
     /** */
+    private static final long serialVersionUID = 4647110502545358709L;
+
+    /** */
     protected transient boolean locked;
 
     /** {@inheritDoc} */