Repository: hbase Updated Branches: refs/heads/branch-1.3 fbde5ed6b -> 17e87ae7e
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/17e87ae7 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/17e87ae7 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/17e87ae7 Branch: refs/heads/branch-1.3 Commit: 17e87ae7e9379baede16f124044a1ea065d3e4f3 Parents: fbde5ed 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:02 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/17e87ae7/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
