Fixed documentation errors in HttpMessageDecoder's subclasses

This commit is contained in:
Trustin Lee 2010-01-27 08:13:38 +00:00
parent 966004332b
commit aa80596b33
4 changed files with 8 additions and 8 deletions

View File

@ -61,8 +61,8 @@ public class HttpRequestDecoder extends HttpMessageDecoder {
/**
* Creates a new instance with the default
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (4096)}, and
* {@code maxChunkSize (4096)}.
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (8192)}, and
* {@code maxChunkSize (8192)}.
*/
public HttpRequestDecoder() {
super();

View File

@ -62,8 +62,8 @@ public class HttpResponseDecoder extends HttpMessageDecoder {
/**
* Creates a new instance with the default
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (4096)}, and
* {@code maxChunkSize (4096)}.
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (8192)}, and
* {@code maxChunkSize (8192)}.
*/
public HttpResponseDecoder() {
super();

View File

@ -37,8 +37,8 @@ public class RtspRequestDecoder extends HttpMessageDecoder {
/**
* Creates a new instance with the default
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (4096)}, and
* {@code maxChunkSize (4096)}.
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (8192)}, and
* {@code maxChunkSize (8192)}.
*/
public RtspRequestDecoder() {
super();

View File

@ -38,8 +38,8 @@ public class RtspResponseDecoder extends HttpMessageDecoder {
/**
* Creates a new instance with the default
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (4096)}, and
* {@code maxChunkSize (4096)}.
* {@code maxInitialLineLength (4096}}, {@code maxHeaderSize (8192)}, and
* {@code maxChunkSize (8192)}.
*/
public RtspResponseDecoder() {
super();