HADOOP-9604. Javadoc of FSDataOutputStream is slightly inaccurate. Contributed by Jingguo Yao.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1491669 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
401823e1ee
commit
e395e29279
|
@ -121,6 +121,9 @@ Release 2.1.0-beta - UNRELEASED
|
|||
|
||||
HADOOP-9287. Parallel-testing hadoop-common (Andrey Klochkov via jlowe)
|
||||
|
||||
HADOOP-9604. Javadoc of FSDataOutputStream is slightly inaccurate. (Jingguo
|
||||
Yao via atm)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-9150. Avoid unnecessary DNS resolution attempts for logical URIs
|
||||
|
|
|
@ -22,9 +22,8 @@ import java.io.*;
|
|||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
|
||||
/** Utility that wraps a {@link OutputStream} in a {@link DataOutputStream},
|
||||
* buffers output through a {@link BufferedOutputStream} and creates a checksum
|
||||
* file. */
|
||||
/** Utility that wraps a {@link OutputStream} in a {@link DataOutputStream}.
|
||||
*/
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class FSDataOutputStream extends DataOutputStream implements Syncable {
|
||||
|
|
Loading…
Reference in New Issue