add the unparam linter

This commit is contained in:
Marten Seemann 2019-09-13 13:29:12 +07:00
parent c8aed2861f
commit ab2b26a5cb
25 changed files with 45 additions and 48 deletions

View file

@ -125,14 +125,14 @@ func (h *packetHandlerMap) CloseServer() {
h.mutex.Lock()
h.server = nil
var wg sync.WaitGroup
for id, handler := range h.handlers {
for _, handler := range h.handlers {
if handler.getPerspective() == protocol.PerspectiveServer {
wg.Add(1)
go func(id string, handler packetHandler) {
go func(handler packetHandler) {
// session.Close() blocks until the CONNECTION_CLOSE has been sent and the run-loop has stopped
_ = handler.Close()
wg.Done()
}(id, handler)
}(handler)
}
}
h.mutex.Unlock()