You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2015/02/11 21:22:37 UTC

[2/4] hbase git commit: HBASE-12996 Reversed field on Filter should be transient (Ian Friedman)

HBASE-12996 Reversed field on Filter should be transient (Ian Friedman)


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

Branch: refs/heads/branch-1
Commit: f809b13d59ad9951f93343c86a8457dc5684f4d8
Parents: 2d475c2
Author: Andrew Purtell <ap...@apache.org>
Authored: Wed Feb 11 12:17:51 2015 -0800
Committer: Andrew Purtell <ap...@apache.org>
Committed: Wed Feb 11 12:17:58 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/filter/Filter.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f809b13d/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/Filter.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/Filter.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/Filter.java
index 729afe1..784d145 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/Filter.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/Filter.java
@@ -56,7 +56,7 @@ import org.apache.hadoop.hbase.exceptions.DeserializationException;
 @InterfaceAudience.Public
 @InterfaceStability.Stable
 public abstract class Filter {
-  protected boolean reversed;
+  protected transient boolean reversed;
   /**
    * Reset the state of the filter between rows.
    *