remove stray print statement in streams map

This commit is contained in:
Marten Seemann 2019-06-05 13:23:17 +08:00
parent af5c057457
commit 42fdeab091

View file

@ -168,7 +168,6 @@ func (m *streamsMap) HandleMaxStreamsFrame(f *wire.MaxStreamsFrame) error {
case protocol.StreamTypeUni:
m.outgoingUniStreams.SetMaxStream(id)
case protocol.StreamTypeBidi:
fmt.Printf("")
m.outgoingBidiStreams.SetMaxStream(id)
}
return nil