HDFS-15506. [JDK 11] Fix javadoc errors in hadoop-hdfs module. Contributed by Xieming Li.

(cherry picked from commit 7938ebfb9d)
This commit is contained in:
Akira Ajisaka 2020-08-11 11:14:58 +09:00 committed by Wei-Chiu Chuang
parent 769df1e964
commit c4f7b8578b
5 changed files with 4 additions and 6 deletions

View File

@ -682,7 +682,7 @@ public class DFSConfigKeys extends CommonConfigurationKeys {
600;
/**
* The maximum number of getBlocks RPCs data movement utilities can make to
* a NameNode per second. Values <= 0 disable throttling. This affects
* a NameNode per second. Values &lt;= 0 disable throttling. This affects
* anything that uses a NameNodeConnector, i.e., the Balancer, Mover,
* and StoragePolicySatisfier.
*/

View File

@ -39,7 +39,6 @@
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintStream;
import java.net.InetAddress;
@ -1777,7 +1776,6 @@ public static DelegationTokenIdentifier decodeDelegationToken(
* was found.
* @throws ParentNotDirectoryException
* @throws UnresolvedLinkException
* @throws FileNotFoundException
*/
public static void checkProtectedDescendants(
FSDirectory fsd, INodesInPath iip)

View File

@ -40,7 +40,7 @@
/**
* Checks to see if datanodes have finished DECOMMISSION_INPROGRESS or
* ENTERING_MAINTENANCE state.
* <p/>
* <p>
* Since this is done while holding the namesystem lock,
* the amount of work per monitor tick is limited.
*/

View File

@ -173,7 +173,8 @@ void addSnapshot(Snapshot snapshot) {
* Add a snapshot.
* @param snapshotRoot Root of the snapshot.
* @param name Name of the snapshot.
* @param mtime The snapshot creation time set by Time.now().
* @param leaseManager
* @param captureOpenFiles
* @throws SnapshotException Throw SnapshotException when there is a snapshot
* with the same name already exists or snapshot quota exceeds
*/

View File

@ -2184,7 +2184,6 @@ private static void printUsage(String cmd) {
/**
* @param argv The parameters passed to this program.
* @exception Exception if the filesystem does not exist.
* @return 0 on success, non zero on error.
*/
@Override