HADOOP-7061. unprecise javadoc for CompressionCodec. Contributed by Jingguo Yao

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1044211 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2010-12-10 05:56:41 +00:00
parent e98f5a95fb
commit dc24696260
2 changed files with 4 additions and 1 deletions

View File

@ -32,6 +32,8 @@ Trunk (unreleased changes)
HADOOP-7058. Expose number of bytes in FSOutputSummer buffer to
implementatins. (Todd Lipcon via hairong)
HADOOP-7061. unprecise javadoc for CompressionCodec. (Jingguo Yao via eli)
OPTIMIZATIONS
BUG FIXES

View File

@ -71,7 +71,8 @@ public interface CompressionCodec {
Compressor createCompressor();
/**
* Create a stream decompressor that will read from the given input stream.
* Create a {@link CompressionInputStream} that will read from the given
* input stream.
*
* @param in the stream to read compressed bytes from
* @return a stream to read uncompressed bytes from