mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
Simplify code in a few places
Found by running `gosimple ./...`
This commit is contained in:
parent
b26d9f92b8
commit
013d7fdb30
13 changed files with 22 additions and 49 deletions
|
@ -213,10 +213,7 @@ func (m *streamsMap) Iterate(fn streamLambda) error {
|
|||
m.mutex.Lock()
|
||||
defer m.mutex.Unlock()
|
||||
|
||||
openStreams := make([]protocol.StreamID, len(m.openStreams), len(m.openStreams))
|
||||
for i, streamID := range m.openStreams { // copy openStreams
|
||||
openStreams[i] = streamID
|
||||
}
|
||||
openStreams := append([]protocol.StreamID{}, m.openStreams...)
|
||||
|
||||
for _, streamID := range openStreams {
|
||||
cont, err := m.iterateFunc(streamID, fn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue