1
0
mirror of https://github.com/golang/go synced 2024-09-24 09:20:15 -06:00

misc/dashboard/codereview: preserve CL ordering.

R=r
CC=golang-dev
https://golang.org/cl/6136056
This commit is contained in:
David Symonds 2012-05-01 16:15:32 +10:00
parent 86a91539b8
commit cc9a5c3be7

View File

@ -78,7 +78,8 @@ func handleFront(w http.ResponseWriter, r *http.Request) {
for i := len(tbl.CLs) - 1; i >= 0; i-- { for i := len(tbl.CLs) - 1; i >= 0; i-- {
cl := tbl.CLs[i] cl := tbl.CLs[i]
if cl.Author == currentPerson || cl.Reviewer == currentPerson { if cl.Author == currentPerson || cl.Reviewer == currentPerson {
tbl.CLs[i] = tbl.CLs[len(tbl.CLs)-1] // Preserve order.
copy(tbl.CLs[i:], tbl.CLs[i+1:])
tbl.CLs = tbl.CLs[:len(tbl.CLs)-1] tbl.CLs = tbl.CLs[:len(tbl.CLs)-1]
} }
} }