Index: src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java (working copy) @@ -580,7 +580,7 @@ * children, an empty list will be returned. * * @param zkw zk reference - * @param znode path of node to list and watch children of + * @param baseNode path of node to list and watch children of * @return list of data of children of the specified node, an empty list if the node * exists but has no children, and null if the node does not exist * @throws KeeperException if unexpected zookeeper exception Index: src/main/java/org/apache/hadoop/hbase/zookeeper/ZKLeaderManager.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/zookeeper/ZKLeaderManager.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/zookeeper/ZKLeaderManager.java (working copy) @@ -28,9 +28,9 @@ /** * Handles coordination of a single "leader" instance among many possible - * candidates. The first {@code ZKLeaderManager} to successfully create + * candidates. The first {@link ZKLeaderManager} to successfully create * the given znode becomes the leader, allowing the instance to continue - * with whatever processing must be protected. Other {@ZKLeaderManager} + * with whatever processing must be protected. Other {@link ZKLeaderManager} * instances will wait to be notified of changes to the leader znode. * If the current master instance fails, the ephemeral leader znode will * be removed, and all waiting instances will be notified, with the race Index: src/main/java/org/apache/hadoop/hbase/security/User.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/security/User.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/security/User.java (working copy) @@ -149,7 +149,7 @@ /** * Wraps an underlying {@code UserGroupInformation} instance. * @param ugi The base Hadoop user - * @return + * @return User */ public static User create(UserGroupInformation ugi) { if (ugi == null) { Index: src/main/java/org/apache/hadoop/hbase/util/FSUtils.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/util/FSUtils.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/util/FSUtils.java (working copy) @@ -151,7 +151,6 @@ /** * Check whether dfs is in safemode. * @param conf - * @return true if dfs is in safemode. * @throws IOException */ public static void checkDfsSafeMode(final Configuration conf) Index: src/main/java/org/apache/hadoop/hbase/client/Result.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/client/Result.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/client/Result.java (working copy) @@ -60,8 +60,8 @@ * A Result is backed by an array of {@link KeyValue} objects, each representing * an HBase cell defined by the row, family, qualifier, timestamp, and value.

* - * The underlying {@link KeyValue} objects can be accessed through the methods - * {@link #sorted()} and {@link #list()}. Each KeyValue can then be accessed + * The underlying {@link KeyValue} objects can be accessed through the method {@link #list()}. + * Each KeyValue can then be accessed * through {@link KeyValue#getRow()}, {@link KeyValue#getFamily()}, {@link KeyValue#getQualifier()}, * {@link KeyValue#getTimestamp()}, and {@link KeyValue#getValue()}. */ Index: src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormat.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormat.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormat.java (working copy) @@ -168,7 +168,6 @@ * Overrides previous calls to addFamily for any families in the input. * * @param columns array of columns, formatted as

family:qualifier
- * @return this */ public static void addColumns(Scan scan, byte [][] columns) { for (byte[] column : columns) { @@ -192,4 +191,4 @@ } } -} \ No newline at end of file +} Index: src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java (working copy) @@ -272,7 +272,7 @@ * Returns the current meta location unless its null. In this latter case, * it has not yet been set so go check whats up in -ROOT- and * return that. - * @return{@link ServerName} for server hosting .META. or if null, + * @return {@link ServerName} for server hosting .META. or if null, * we'll read the location that is up in -ROOT- table (which * could be null or just plain stale). * @throws IOException Index: src/main/java/org/apache/hadoop/hbase/ipc/RequestContext.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/ipc/RequestContext.java (revision 1204083) +++ src/main/java/org/apache/hadoop/hbase/ipc/RequestContext.java (working copy) @@ -46,7 +46,7 @@ /** * Returns the user credentials associated with the current RPC request or * null if no credentials were provided. - * @return + * @return A User */ public static User getRequestUser() { RequestContext ctx = instance.get();