Repository: hbase Updated Branches: refs/heads/master 46cc3d497 -> 14217cef2
HBASE-15364 Fix unescaped < and > characters in Javadoc Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/14217cef Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/14217cef Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/14217cef Branch: refs/heads/master Commit: 14217cef247f5ab0f052b54fc569565137e566e0 Parents: 46cc3d4 Author: Gábor Lipták <[email protected]> Authored: Tue Mar 8 19:36:36 2016 -0500 Committer: Misty Stanley-Jones <[email protected]> Committed: Tue Mar 8 16:44:04 2016 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/14217cef/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java index e8a384b..9abef9c 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java @@ -608,7 +608,7 @@ public class HBaseFsck extends Configured implements Closeable { * region servers and the masters. It makes each region's state in HDFS, in * hbase:meta, and deployments consistent. * - * @return If > 0 , number of errors detected, if < 0 there was an unrecoverable + * @return If > 0 , number of errors detected, if < 0 there was an unrecoverable * error. If 0, we have a clean hbase. */ public int onlineConsistencyRepair() throws IOException, KeeperException, @@ -2126,7 +2126,7 @@ public class HBaseFsck extends Configured implements Closeable { * kept in the AssignementManager. Because disable uses this state instead of * that found in META, we can't seem to cleanly disable/delete tables that * have been hbck fixed. When used on a version of HBase that does not have - * the offline ipc call exposed on the master (<0.90.5, <0.92.0) a master + * the offline ipc call exposed on the master (<0.90.5, <0.92.0) a master * restart or failover may be required. */ private void closeRegion(HbckInfo hi) throws IOException, InterruptedException {
