Skip to content

Commit

Permalink
HADOOP-11786. Fix Javadoc typos in org.apache.hadoop.fs.FileSystem. C…
Browse files Browse the repository at this point in the history
…ontributed by Andras Bokor.
  • Loading branch information
anuengineer committed Aug 17, 2016
1 parent 822d661 commit c575231
Showing 1 changed file with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -934,13 +934,13 @@ public FSDataOutputStream create(Path f,
* Create an FSDataOutputStream at the indicated Path with write-progress
* reporting.
* @param f the file name to open
* @param permission
* @param permission file permission
* @param overwrite if a file with this name already exists, then if true,
* the file will be overwritten, and if false an error will be thrown.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @throws IOException
* @see #setPermission(Path, FsPermission)
*/
Expand All @@ -956,12 +956,12 @@ public abstract FSDataOutputStream create(Path f,
* Create an FSDataOutputStream at the indicated Path with write-progress
* reporting.
* @param f the file name to open
* @param permission
* @param permission file permission
* @param flags {@link CreateFlag}s to use for this stream.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @throws IOException
* @see #setPermission(Path, FsPermission)
*/
Expand All @@ -980,12 +980,12 @@ public FSDataOutputStream create(Path f,
* Create an FSDataOutputStream at the indicated Path with a custom
* checksum option
* @param f the file name to open
* @param permission
* @param permission file permission
* @param flags {@link CreateFlag}s to use for this stream.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @param checksumOpt checksum parameter. If null, the values
* found in conf will be used.
* @throws IOException
Expand Down Expand Up @@ -1094,8 +1094,8 @@ protected void primitiveMkdir(Path f, FsPermission absolutePermission,
* the file will be overwritten, and if false an error will be thrown.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @throws IOException
* @see #setPermission(Path, FsPermission)
*/
Expand All @@ -1112,13 +1112,13 @@ public FSDataOutputStream createNonRecursive(Path f,
* reporting. Same as create(), except fails if parent directory doesn't
* already exist.
* @param f the file name to open
* @param permission
* @param permission file permission
* @param overwrite if a file with this name already exists, then if true,
* the file will be overwritten, and if false an error will be thrown.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @throws IOException
* @see #setPermission(Path, FsPermission)
*/
Expand All @@ -1136,12 +1136,12 @@ public FSDataOutputStream createNonRecursive(Path f, FsPermission permission,
* reporting. Same as create(), except fails if parent directory doesn't
* already exist.
* @param f the file name to open
* @param permission
* @param permission file permission
* @param flags {@link CreateFlag}s to use for this stream.
* @param bufferSize the size of the buffer to be used.
* @param replication required block replication for the file.
* @param blockSize
* @param progress
* @param blockSize block size
* @param progress the progress reporter
* @throws IOException
* @see #setPermission(Path, FsPermission)
*/
Expand Down Expand Up @@ -1881,7 +1881,7 @@ public Path getHomeDirectory() {
* Set the current working directory for the given file system. All relative
* paths will be resolved relative to it.
*
* @param new_dir
* @param new_dir Path of new working directory
*/
public abstract void setWorkingDirectory(Path new_dir);

Expand Down Expand Up @@ -2324,7 +2324,7 @@ public FileChecksum getFileChecksum(Path f, final long length)
/**
* Set the verify checksum flag. This is only applicable if the
* corresponding FileSystem supports checksum. By default doesn't do anything.
* @param verifyChecksum
* @param verifyChecksum Verify checksum flag
*/
public void setVerifyChecksum(boolean verifyChecksum) {
//doesn't do anything
Expand All @@ -2333,7 +2333,7 @@ public void setVerifyChecksum(boolean verifyChecksum) {
/**
* Set the write checksum flag. This is only applicable if the
* corresponding FileSystem supports checksum. By default doesn't do anything.
* @param writeChecksum
* @param writeChecksum Write checsum flag
*/
public void setWriteChecksum(boolean writeChecksum) {
//doesn't do anything
Expand Down Expand Up @@ -2369,8 +2369,8 @@ public FsStatus getStatus(Path p) throws IOException {

/**
* Set permission of a path.
* @param p
* @param permission
* @param p The path
* @param permission permission
*/
public void setPermission(Path p, FsPermission permission
) throws IOException {
Expand Down Expand Up @@ -2590,7 +2590,7 @@ public byte[] getXAttr(Path path, String name) throws IOException {
* Refer to the HDFS extended attributes user documentation for details.
*
* @param path Path to get extended attributes
* @return Map<String, byte[]> describing the XAttrs of the file or directory
* @return Map describing the XAttrs of the file or directory
* @throws IOException
*/
public Map<String, byte[]> getXAttrs(Path path) throws IOException {
Expand All @@ -2607,7 +2607,7 @@ public Map<String, byte[]> getXAttrs(Path path) throws IOException {
*
* @param path Path to get extended attributes
* @param names XAttr names.
* @return Map<String, byte[]> describing the XAttrs of the file or directory
* @return Map describing the XAttrs of the file or directory
* @throws IOException
*/
public Map<String, byte[]> getXAttrs(Path path, List<String> names)
Expand Down Expand Up @@ -3520,7 +3520,7 @@ public String aggregate() {
* In order to reset, we add up all the thread-local statistics data, and
* set rootData to the negative of that.
*
* This may seem like a counterintuitive way to reset the statsitics. Why
* This may seem like a counterintuitive way to reset the statistics. Why
* can't we just zero out all the thread-local data? Well, thread-local
* data can only be modified by the thread that owns it. If we tried to
* modify the thread-local data from this thread, our modification might get
Expand Down

0 comments on commit c575231

Please sign in to comment.