forked from TrueCloudLab/frostfs-node
[#607] network: Make Address.Equal method unexported
The method is used only in the same package. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
61cc70d899
commit
b723c92ef8
3 changed files with 4 additions and 4 deletions
|
@ -32,8 +32,8 @@ func (a Address) String() string {
|
||||||
return a.ma.String()
|
return a.ma.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Equal compares Address's.
|
// equal compares Address's.
|
||||||
func (a Address) Equal(addr Address) bool {
|
func (a Address) equal(addr Address) bool {
|
||||||
return a.ma.Equal(addr.ma)
|
return a.ma.Equal(addr.ma)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ func (x AddressGroup) WriteToNodeInfo(ni *netmap.NodeInfo) {
|
||||||
func (x AddressGroup) Intersects(x2 AddressGroup) bool {
|
func (x AddressGroup) Intersects(x2 AddressGroup) bool {
|
||||||
for i := range x {
|
for i := range x {
|
||||||
for j := range x2 {
|
for j := range x2 {
|
||||||
if x[i].Equal(x2[j]) {
|
if x[i].equal(x2[j]) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,6 @@ func TestAddress_AddTLS(t *testing.T) {
|
||||||
err := netAddr.FromString(test.want)
|
err := netAddr.FromString(test.want)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
require.True(t, netAddr.Equal(addr), test.input)
|
require.True(t, netAddr.equal(addr), test.input)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue