You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2016/07/20 19:50:37 UTC

hbase git commit: HBASE-16052 Addendum fixes 0.98 build against hadoop-1.1 (Ben Lau)

Repository: hbase
Updated Branches:
  refs/heads/0.98 6e5a773d3 -> a948b0169


HBASE-16052 Addendum fixes 0.98 build against hadoop-1.1 (Ben Lau)


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

Branch: refs/heads/0.98
Commit: a948b0169f57b2a01504b3054ece2b2c97e7dd61
Parents: 6e5a773
Author: tedyu <yu...@gmail.com>
Authored: Wed Jul 20 12:50:29 2016 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Wed Jul 20 12:50:29 2016 -0700

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/a948b016/hbase-server/src/main/java/org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java
index 289cf89..eef66bd 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/AbstractFileStatusFilter.java
@@ -49,7 +49,7 @@ public abstract class AbstractFileStatusFilter implements PathFilter, FileStatus
 
   @Override
   public boolean accept(FileStatus f) {
-    return accept(f.getPath(), f.isDirectory());
+    return accept(f.getPath(), f.isDir());
   }
 
   @Override