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

[41/50] [abbrv] 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/dc522d01
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/dc522d01
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/dc522d01

Branch: refs/heads/hbase-11339
Commit: dc522d010cd2078d4ce6888df564610ed29bbdc7
Parents: 3f7b18c
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:51 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/dc522d01/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 d66ad50..88bf842 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
@@ -55,7 +55,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.
    *