remove fcm.StreamContributesToConnectionFlowControl

This commit is contained in:
Lucas Clemente 2016-07-26 17:09:24 +02:00
parent 5f774c8e03
commit 3aa8b1bf37
4 changed files with 0 additions and 41 deletions

View file

@ -89,14 +89,6 @@ func (m *mockFlowControlHandler) RemainingConnectionWindowSize() protocol.ByteCo
func (m *mockFlowControlHandler) UpdateWindow(streamID protocol.StreamID, offset protocol.ByteCount) (bool, error) {
panic("not implemented")
}
func (m *mockFlowControlHandler) StreamContributesToConnectionFlowControl(streamID protocol.StreamID) (bool, error) {
for _, id := range m.streamsContributing {
if id == streamID {
return true, nil
}
}
return false, nil
}
var _ = Describe("Stream", func() {
var (