remove debugging printlns
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
27d0c7a181
commit
1c1cc0296b
|
@ -714,14 +714,12 @@ public class AsyncServletIOTest
|
|||
@Override
|
||||
public void onError(Throwable t)
|
||||
{
|
||||
System.err.println("onError");
|
||||
t.printStackTrace();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDataAvailable() throws IOException
|
||||
{
|
||||
System.err.println("onDataAvailable");
|
||||
onDA.incrementAndGet();
|
||||
|
||||
boolean readF = false;
|
||||
|
@ -752,7 +750,6 @@ public class AsyncServletIOTest
|
|||
@Override
|
||||
public void onWritePossible() throws IOException
|
||||
{
|
||||
System.err.println("onWritePossible");
|
||||
onWP.incrementAndGet();
|
||||
|
||||
while (out.isReady())
|
||||
|
@ -788,7 +785,6 @@ public class AsyncServletIOTest
|
|||
@Override
|
||||
public void onAllDataRead() throws IOException
|
||||
{
|
||||
System.err.println("onAllDataRead");
|
||||
throw new IllegalStateException();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue