better comment

This commit is contained in:
Shay Banon 2012-02-06 21:24:37 +02:00
parent f3a5306cde
commit abfc570762
1 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,9 @@ public class NettyHttpRequest extends AbstractRestRequest implements HttpRequest
public boolean contentUnsafe() {
// the netty HTTP handling always copy over the buffer to its own buffer, either in NioWorker internally
// when reading, or using a cumalation buffer
// also, HttpMessageDecoder#content variable gets freshly created for each request and not reused across
// requests
return false;
//return request.getContent().hasArray();
}