Removed unnecessary code.

This commit is contained in:
Simone Bordet 2017-10-03 10:18:44 +02:00
parent d5ff4fa075
commit a4d7b4c4dc
2 changed files with 0 additions and 3 deletions

View File

@ -22,11 +22,9 @@ import org.eclipse.jetty.io.ByteBufferPool;
/**
* {@link ContentDecoder} for the "gzip" encoding.
*
*/
public class GZIPContentDecoder extends org.eclipse.jetty.http.GZIPContentDecoder implements ContentDecoder
{
private static final int DEFAULT_BUFFER_SIZE = 2048;
public GZIPContentDecoder()

View File

@ -101,7 +101,6 @@ public class GZIPContentDecoder implements Destroyable
if (size<=_inflated.capacity())
{
BufferUtil.append(_inflated,chunk);
BufferUtil.put(chunk,_inflated);
release(chunk);
}
else