mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
small optimization
This commit is contained in:
parent
86b9aa3173
commit
6d8bd1eedc
|
@ -62,13 +62,13 @@ func readResolvedChunks(chunks []*filer_pb.FileChunk) (visibles []VisibleInterva
|
|||
}
|
||||
}
|
||||
} else {
|
||||
var isLast bool
|
||||
isLast := true
|
||||
for e := queue.Back(); e != nil; e = e.Prev() {
|
||||
isLast = e.Next() == nil
|
||||
if e.Value.(*Point).ts == point.ts {
|
||||
queue.Remove(e)
|
||||
break
|
||||
}
|
||||
isLast = false
|
||||
}
|
||||
if isLast && lastPoint != nil {
|
||||
visibles = addToVisibles(visibles, prevX, lastPoint, point)
|
||||
|
|
Loading…
Reference in a new issue