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
|
@Override
|
||||||
public void onError(Throwable t)
|
public void onError(Throwable t)
|
||||||
{
|
{
|
||||||
System.err.println("onError");
|
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDataAvailable() throws IOException
|
public void onDataAvailable() throws IOException
|
||||||
{
|
{
|
||||||
System.err.println("onDataAvailable");
|
|
||||||
onDA.incrementAndGet();
|
onDA.incrementAndGet();
|
||||||
|
|
||||||
boolean readF = false;
|
boolean readF = false;
|
||||||
|
@ -752,7 +750,6 @@ public class AsyncServletIOTest
|
||||||
@Override
|
@Override
|
||||||
public void onWritePossible() throws IOException
|
public void onWritePossible() throws IOException
|
||||||
{
|
{
|
||||||
System.err.println("onWritePossible");
|
|
||||||
onWP.incrementAndGet();
|
onWP.incrementAndGet();
|
||||||
|
|
||||||
while (out.isReady())
|
while (out.isReady())
|
||||||
|
@ -788,7 +785,6 @@ public class AsyncServletIOTest
|
||||||
@Override
|
@Override
|
||||||
public void onAllDataRead() throws IOException
|
public void onAllDataRead() throws IOException
|
||||||
{
|
{
|
||||||
System.err.println("onAllDataRead");
|
|
||||||
throw new IllegalStateException();
|
throw new IllegalStateException();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue