Make linter happy

This commit is contained in:
世界 2022-06-28 22:16:48 +08:00
parent aa7007a947
commit beeeba3388
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
12 changed files with 26 additions and 33 deletions

View file

@ -13,9 +13,7 @@ func LocalAddrs() ([]netip.Addr, error) {
if err != nil {
return nil, err
}
return common.Map(interfaceAddrs, func(addr net.Addr) netip.Addr {
return M.AddrFromNetAddr(addr)
}), nil
return common.Map(interfaceAddrs, M.AddrFromNetAddr), nil
}
func IsPublicAddr(addr netip.Addr) bool {
@ -27,7 +25,5 @@ func LocalPublicAddrs() ([]netip.Addr, error) {
if err != nil {
return nil, err
}
return common.Filter(publicAddrs, func(addr netip.Addr) bool {
return IsPublicAddr(addr)
}), nil
return common.Filter(publicAddrs, IsPublicAddr), nil
}