forked from TrueCloudLab/restic
Merge pull request #548 from mappu/patch-1
idset.go: micro-optimise away redundant scan
This commit is contained in:
commit
e1960cadb2
1 changed files with 1 additions and 5 deletions
|
@ -55,11 +55,7 @@ func (s IDSet) Equals(other IDSet) bool {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for id := range other {
|
// length + one-way comparison is sufficient implication of equality
|
||||||
if _, ok := s[id]; !ok {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue