p2p: changed if-else blocks to conform with golint (#16660)

This commit is contained in:
GagziW
2018-05-03 01:33:39 -07:00
committed by Péter Szilágyi
parent ea1724de1a
commit f2447bd4c3
2 changed files with 15 additions and 17 deletions

View File

@ -738,7 +738,6 @@ func (self *Network) executeNodeEvent(e *Event) error {
func (self *Network) executeConnEvent(e *Event) error {
if e.Conn.Up {
return self.Connect(e.Conn.One, e.Conn.Other)
} else {
return self.Disconnect(e.Conn.One, e.Conn.Other)
}
return self.Disconnect(e.Conn.One, e.Conn.Other)
}