Skip to content

Commit

Permalink
Removed unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
hknutzen committed Mar 15, 2022
1 parent 51e25a6 commit a701321
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions go/pkg/pass1/expand-crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,6 @@ import (
"strings"
)

func (obj *zone) nonSecondaryInterfaces() intfList {
var result intfList
for _, intf := range obj.interfaces {
if intf.mainIntf == nil {
result = append(result, intf)
}
}
return result
}

func (obj *network) nonSecondaryInterfaces() intfList {
var result intfList
for _, intf := range obj.interfaces {
if intf.mainIntf == nil {
result = append(result, intf)
}
}
return result
}

func (c *spoc) cryptoBehind(intf *routerIntf, managed string) netList {
if managed != "" {
z := intf.zone
Expand Down

0 comments on commit a701321

Please sign in to comment.