Repository: hbase Updated Branches: refs/heads/branch-1 50708d952 -> f2ba52ac4
HBASE-18096 Limit HFileUtil visibility and add missing annotations Signed-off-by: Chia-Ping Tsai <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f2ba52ac Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f2ba52ac Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f2ba52ac Branch: refs/heads/branch-1 Commit: f2ba52ac45d96e2e872e0cdf90c94edfb8f36a32 Parents: 50708d9 Author: Balazs Meszaros <[email protected]> Authored: Tue May 23 20:41:14 2017 +0200 Committer: Chia-Ping Tsai <[email protected]> Committed: Wed May 24 16:34:27 2017 +0800 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/f2ba52ac/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java index 835450c..83feb72 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileUtil.java @@ -20,8 +20,10 @@ package org.apache.hadoop.hbase.io.hfile; import java.io.IOException; import org.apache.hadoop.fs.FSDataInputStream; +import org.apache.hadoop.hbase.classification.InterfaceAudience; -public class HFileUtil { [email protected] +class HFileUtil { /** guards against NullPointer * utility which tries to seek on the DFSIS and will try an alternative source
