Fix documentation errors

This commit is contained in:
Trustin Lee 2012-06-19 11:35:43 +09:00
parent f60a6e861c
commit 4c072694be
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,6 @@ import io.netty.handler.codec.ByteToByteDecoder;
* Decompresses a {@link ByteBuf} using the deflate algorithm.
*
* @apiviz.landmark
* @apiviz.has io.netty.handler.codec.compression.ZlibWrapper
*/
public abstract class ZlibDecoder extends ByteToByteDecoder {

View File

@ -20,10 +20,9 @@ import io.netty.channel.ChannelFuture;
import io.netty.handler.codec.ByteToByteEncoder;
/**
* Decompresses a {@link ByteBuf} using the deflate algorithm.
* Compresses a {@link ByteBuf} using the deflate algorithm.
*
* @apiviz.landmark
* @apiviz.has io.netty.handler.codec.compression.ZlibWrapper
*/
public abstract class ZlibEncoder extends ByteToByteEncoder {