remove debugging printlns

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2023-08-28 15:50:14 +10:00
parent 27d0c7a181
commit 1c1cc0296b
1 changed files with 0 additions and 4 deletions

View File

@ -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();
}
});