Remove unnecessary variable assignment

This commit is contained in:
Hasibul Hasan Anik 2020-03-05 13:02:30 +06:00
commit b253e6b4df
2 changed files with 2 additions and 2 deletions

View file

@ -92,7 +92,7 @@ func (mod *WiFiModule) channelHopper() {
}
select {
case _ = <-mod.hopChanges:
case <-mod.hopChanges:
mod.Debug("hop changed")
break loopCurrentChannels
case <-time.After(delay):