Strip unnecessary continue statement
This commit is contained in:
parent
472186c1be
commit
8fcfbc0d20
@ -1070,10 +1070,8 @@ func (n *network) processNetChan(listener tunnel.Listener) {
|
|||||||
// we found no routes for the given service
|
// we found no routes for the given service
|
||||||
// create the new route we have just received
|
// create the new route we have just received
|
||||||
if len(routes) == 0 {
|
if len(routes) == 0 {
|
||||||
// add routes to the routing table
|
|
||||||
if err := n.router.Table().Create(route); err != nil && err != router.ErrDuplicateRoute {
|
if err := n.router.Table().Create(route); err != nil && err != router.ErrDuplicateRoute {
|
||||||
log.Debugf("Network node %s failed to add route: %v", n.id, err)
|
log.Debugf("Network node %s failed to add route: %v", n.id, err)
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user