remove debug logging

This commit is contained in:
Thomas Becker 2013-06-11 16:26:27 +02:00
parent beba00c5e0
commit 91f6170c40
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public class HttpOutput extends ServletOutputStream
public void write(byte[] b, int off, int len) throws IOException
{
if (isClosed())
throw new EOFException("Closed:" + System.identityHashCode(this));
throw new EOFException("Closed");
_written+=len;
boolean complete=_channel.getResponse().isAllContentWritten(_written);