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;
|
PushSynInfo pushSynInfo = (PushSynInfo)argument;
|
||||||
if (pushSynInfo.getAssociatedStreamId() != associatedStreamId)
|
if (pushSynInfo.getAssociatedStreamId() != associatedStreamId)
|
||||||
{
|
|
||||||
System.out.println("streamIds do not match!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
return pushSynInfo.isClose() == synInfo.isClose();
|
||||||
if (pushSynInfo.isClose() != synInfo.isClose())
|
|
||||||
{
|
|
||||||
System.out.println("isClose doesn't match");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,6 @@ public class ClosedStreamTest extends AbstractTest
|
||||||
@Override
|
@Override
|
||||||
public void onReply(Stream stream, ReplyInfo replyInfo)
|
public void onReply(Stream stream, ReplyInfo replyInfo)
|
||||||
{
|
{
|
||||||
System.out.println("ONREPLY CLIENT CALLED");
|
|
||||||
replyReceivedLatch.countDown();
|
replyReceivedLatch.countDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue