Index: hbase-server/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/protobuf/RequestConverter.java (working copy) @@ -1015,7 +1015,7 @@ /** * Creates a protocol buffer GetSchemaAlterStatusRequest * - * @param table + * @param tableName * @return a GetSchemaAlterStatusRequest */ public static GetSchemaAlterStatusRequest buildGetSchemaAlterStatusRequest( Index: hbase-server/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java (working copy) @@ -1752,7 +1752,7 @@ /** * Helper method to print the current state of the ZK tree. - * @see #logZKTree(String) + * @see #logZKTree(ZooKeeperWatcher, String) * @throws KeeperException if an unexpected exception occurs */ protected static void logZKTree(ZooKeeperWatcher zkw, String root, String prefix) throws KeeperException { Index: hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java (working copy) @@ -67,7 +67,7 @@ * * Utility methods in this class are useful for getting the correct locations for different parts of * the snapshot, as well as moving completed snapshots into place (see - * {@link #completeSnapshot(SnapshotDescription, Path, Path, FileSystem)}, and writing the + * {@code #completeSnapshot(SnapshotDescription, Path, Path, FileSystem)}, and writing the * {@link SnapshotDescription} to the working snapshot directory. */ public class SnapshotDescriptionUtils { Index: hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/TakeSnapshotUtils.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/TakeSnapshotUtils.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/TakeSnapshotUtils.java (working copy) @@ -77,7 +77,7 @@ *

* Specific files per store are kept in a similar layout as per the current directory layout. * @param regionDir snapshot directory for the parent region, not the standard region - * directory. See {@link #getRegionSnapshotDirectory(SnapshotDescription, Path, String)} + * directory. See {@code #getRegionSnapshotDirectory(SnapshotDescription, Path, String)} * @param family name of the store to snapshot * @return path to the snapshot home directory for the store/family */ Index: hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/RegionServerSnapshotManager.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/RegionServerSnapshotManager.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/RegionServerSnapshotManager.java (working copy) @@ -66,7 +66,7 @@ *

* On startup, requires {@link #start()} to be called. *

- * On shutdown, requires {@link #stop()} to be called + * On shutdown, requires {@link #stop(boolean)} to be called */ @InterfaceAudience.Private @InterfaceStability.Unstable Index: hbase-server/src/main/java/org/apache/hadoop/hbase/master/snapshot/SnapshotFileCache.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/master/snapshot/SnapshotFileCache.java (revision 1448399) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/master/snapshot/SnapshotFileCache.java (working copy) @@ -58,8 +58,8 @@ * Further, the cache is periodically refreshed ensure that files in snapshots that were deleted are * also removed from the cache. *

- * A {@link SnapshotFileInspector} must be passed when creating this to allow extraction - * of files under the /hbase/.snapshot/[snapshot name] directory, for each snapshot. + * A {@link SnapshotFileCache.SnapshotFileInspector} must be passed when creating this to + * allow extraction of files under /hbase/.snapshot/[snapshot name] directory, for each snapshot. * This allows you to only cache files under, for instance, all the logs in the .logs directory or * all the files under all the regions. *