From 327184716733f478023e289461752199becf650c Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Mon, 22 Jun 2020 16:51:10 +0700 Subject: [PATCH] remove superfluos handleResetStreamFrame method on the stream --- stream.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stream.go b/stream.go index 9b6dd144f..704489bc4 100644 --- a/stream.go +++ b/stream.go @@ -149,10 +149,6 @@ func (s *stream) closeForShutdown(err error) { s.receiveStream.closeForShutdown(err) } -func (s *stream) handleResetStreamFrame(frame *wire.ResetStreamFrame) error { - return s.receiveStream.handleResetStreamFrame(frame) -} - // checkIfCompleted is called from the uniStreamSender, when one of the stream halves is completed. // It makes sure that the onStreamCompleted callback is only called if both receive and send side have completed. func (s *stream) checkIfCompleted() {