Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0C923200B40 for ; Thu, 2 Jun 2016 02:09:59 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0B481160A4C; Thu, 2 Jun 2016 00:09:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5CD35160A55 for ; Thu, 2 Jun 2016 02:09:57 +0200 (CEST) Received: (qmail 25917 invoked by uid 500); 2 Jun 2016 00:09:56 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 25756 invoked by uid 99); 2 Jun 2016 00:09:56 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Jun 2016 00:09:56 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 35526C2B4F for ; Thu, 2 Jun 2016 00:09:56 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id kqIniBm3a5Vi for ; Thu, 2 Jun 2016 00:09:55 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 8503E60E69 for ; Thu, 2 Jun 2016 00:09:50 +0000 (UTC) Received: (qmail 22511 invoked by uid 99); 2 Jun 2016 00:09:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Jun 2016 00:09:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2D061E0B2D; Thu, 2 Jun 2016 00:09:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dschneider@apache.org To: commits@geode.incubator.apache.org Date: Thu, 02 Jun 2016 00:10:35 -0000 Message-Id: <6a40f9ca48f14907a25c84894ceaee8c@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [48/50] [abbrv] incubator-geode git commit: removed contextObject from EntryEventImpl archived-at: Thu, 02 Jun 2016 00:09:59 -0000 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 Authored: Wed Jun 1 17:02:01 2016 -0700 Committer: Darrel Schneider 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 */