Jetty9 - SPDY: removed System.out statements.

This commit is contained in:
Simone Bordet 2012-07-30 22:56:10 +02:00
parent 35b61feae2
commit 8d12e49988
2 changed files with 1 additions and 10 deletions

View File

@ -86,16 +86,8 @@ public class StandardStreamTest
{
PushSynInfo pushSynInfo = (PushSynInfo)argument;
if (pushSynInfo.getAssociatedStreamId() != associatedStreamId)
{
System.out.println("streamIds do not match!");
return false;
}
if (pushSynInfo.isClose() != synInfo.isClose())
{
System.out.println("isClose doesn't match");
return false;
}
return true;
return pushSynInfo.isClose() == synInfo.isClose();
}
}

View File

@ -141,7 +141,6 @@ public class ClosedStreamTest extends AbstractTest
@Override
public void onReply(Stream stream, ReplyInfo replyInfo)
{
System.out.println("ONREPLY CLIENT CALLED");
replyReceivedLatch.countDown();
}