removed contextObject from EntryEventImpl
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/a0248354 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/a0248354 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/a0248354 Branch: refs/heads/feature/GEODE-1464 Commit: a0248354e1eca7da7424fc3ffde40bb5a81c3f05 Parents: 67dfa05 Author: Darrel Schneider <[email protected]> Authored: Wed Jun 1 17:02:01 2016 -0700 Committer: Darrel Schneider <[email protected]> Committed: Wed Jun 1 17:02:01 2016 -0700 ---------------------------------------------------------------------- .../gemfire/internal/cache/EntryEventImpl.java | 15 --------------- 1 file changed, 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a0248354/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/EntryEventImpl.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/EntryEventImpl.java b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/EntryEventImpl.java index c221ff4..985180d 100644 --- a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/EntryEventImpl.java +++ b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/EntryEventImpl.java @@ -166,13 +166,6 @@ public class EntryEventImpl protected ClientProxyMembershipID context = null; /** - * A custom context object that can be used for any other contextual - * information. Currently used by SQL Fabric to pass around evaluated rows - * from raw byte arrays and routing object. - */ - private transient Object contextObj = null; - - /** * this holds the bytes representing the change in value effected by this * event. It is used when the value implements the Delta interface. */ @@ -2492,14 +2485,6 @@ public class EntryEventImpl return this; } - public final void setContextObject(Object ctx) { - this.contextObj = ctx; - } - - public final Object getContextObject() { - return this.contextObj; - } - /** * @return the keyInfo */
