HADOOP-9604. Javadoc of FSDataOutputStream is slightly inaccurate. Contributed by Jingguo Yao.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1491668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e23270e0d
commit
5ab67b5c07
|
@ -446,6 +446,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
|
||||
|
|
|
@ -26,9 +26,8 @@ import java.io.OutputStream;
|
|||
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