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

@ -180,17 +180,6 @@ func (f *flowControlManager) UpdateWindow(streamID protocol.StreamID, offset pro
return streamFlowController.UpdateSendWindow(offset), nil
}
func (f *flowControlManager) StreamContributesToConnectionFlowControl(streamID protocol.StreamID) (bool, error) {
f.mutex.RLock()
defer f.mutex.RUnlock()
contributes, ok := f.contributesToConnectionFlowControl[streamID]
if !ok {
return false, errMapAccess
}
return contributes, nil
}
func (f *flowControlManager) getFlowController(streamID protocol.StreamID) (*flowController, error) {
streamFlowController, ok := f.streamFlowController[streamID]
if !ok {