You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2016/03/21 15:20:32 UTC

[07/50] [abbrv] ignite git commit: Set serialVersionUID for CacheEntryPredicateAdapter for backward compatibility. (cherry picked from commit 7d65ec9)

Set serialVersionUID for CacheEntryPredicateAdapter for backward compatibility.
(cherry picked from commit 7d65ec9)


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

Branch: refs/heads/ignite-2801
Commit: 9c9129f1f81ce59715c7eb536c6637ae26ec1dee
Parents: 3da257f
Author: sboikov <sb...@gridgain.com>
Authored: Fri Feb 26 10:46:50 2016 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Fri Feb 26 15:23:58 2016 +0300

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/9c9129f1/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} */