Jetty9 - SPDY: removed System.out statements.
This commit is contained in:
parent
35b61feae2
commit
8d12e49988
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue