mirror of
https://github.com/octoleo/restic.git
synced 2024-11-10 15:21:03 +00:00
idset.go: micro-optimise away redundant scan
This commit is contained in:
parent
e8e45fe2e3
commit
32985f7904
@ -55,11 +55,7 @@ func (s IDSet) Equals(other IDSet) bool {
|
||||
}
|
||||
}
|
||||
|
||||
for id := range other {
|
||||
if _, ok := s[id]; !ok {
|
||||
return false
|
||||
}
|
||||
}
|
||||
// length + one-way comparison is sufficient implication of equality
|
||||
|
||||
return true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user