* Added LZMA compression handler to the TODO list

* Removed a link to unimplemented compression algorithms
This commit is contained in:
Trustin Lee 2009-10-21 04:18:12 +00:00
parent 6022f207ab
commit e3b37958c4

View File

@ -16,11 +16,10 @@
/**
* Encoder and decoder which compresses and decompresses {@link ChannelBuffer}s
* in a compression format such as <a href="http://en.wikipedia.org/wiki/Zlib">zlib</a>,
* <a href="http://en.wikipedia.org/wiki/Gzip">gzip</a>, and
* <a href="http://en.wikipedia.org/wiki/Bzip2">bzip2</a>.
* in a compression format such as <a href="http://en.wikipedia.org/wiki/Zlib">zlib</a>
* and <a href="http://en.wikipedia.org/wiki/Gzip">gzip</a>.
*
* @apiviz.exclude \.codec\.(?!compression)[a-z0-9]+\.
*/
package org.jboss.netty.handler.codec.compression;
// TODO Implement bzip2 handlers
// TODO Implement bzip2 and lzma handlers