remove the error return value from Stream.CancelRead

This commit is contained in:
Marten Seemann 2019-01-24 09:31:34 +07:00
parent 3808191679
commit ca939df44e
7 changed files with 22 additions and 27 deletions

View file

@ -190,12 +190,12 @@ func (s *receiveStream) dequeueNextFrame() {
s.readPosInFrame = 0
}
func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) error {
func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) {
s.mutex.Lock()
defer s.mutex.Unlock()
if s.finRead || s.canceledRead || s.resetRemotely {
return nil
return
}
if s.finalOffset != protocol.MaxByteCount { // final offset was already received
s.streamCompleted()
@ -207,7 +207,6 @@ func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) erro
StreamID: s.streamID,
ErrorCode: errorCode,
})
return nil
}
func (s *receiveStream) handleStreamFrame(frame *wire.StreamFrame) error {