Fix APIviz panic

This commit is contained in:
Trustin Lee 2013-01-18 14:12:35 +09:00
parent ba8c8171fa
commit cfa300f431
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ package io.netty.handler.codec.http;
* @see HttpHeaders * @see HttpHeaders
* *
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has io.netty.handler.codec.http.HttpChunk oneway - - is followed by * @apiviz.has io.netty.handler.codec.http.HttpContent oneway - - is followed by
*/ */
public interface HttpMessage extends HttpObject { public interface HttpMessage extends HttpObject {

View File

@ -44,7 +44,7 @@ import static io.netty.handler.codec.http.HttpHeaders.*;
* p.addLast("handler", new HttpRequestHandler()); * p.addLast("handler", new HttpRequestHandler());
* </pre> * </pre>
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has io.netty.handler.codec.http.HttpChunk oneway - - filters out * @apiviz.has io.netty.handler.codec.http.HttpContent oneway - - filters out
*/ */
public class HttpObjectAggregator extends MessageToMessageDecoder<HttpObject> { public class HttpObjectAggregator extends MessageToMessageDecoder<HttpObject> {
public static final int DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS = 1024; public static final int DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS = 1024;