Merge pull request #11726 from noxiouz/history-swap-parallel-assignment

History.Swap Use parallel assignment to swap elements
This commit is contained in:
Alexander Morozov
2015-03-24 14:43:44 -07:00
+1 -3
View File
@@ -19,9 +19,7 @@ func (history *History) Less(i, j int) bool {
func (history *History) Swap(i, j int) {
containers := *history
tmp := containers[i]
containers[i] = containers[j]
containers[j] = tmp
containers[i], containers[j] = containers[j], containers[i]
}
func (history *History) Add(container *Container) {