backends: Do not sort strings

Closes #305
This commit is contained in:
Alexander Neumann
2016-01-24 21:32:45 +01:00
parent d9c87559b5
commit a0d484113a
3 changed files with 0 additions and 14 deletions

View File

@@ -4,7 +4,6 @@ import (
"bytes"
"errors"
"io"
"sort"
"sync"
"github.com/restic/restic/backend"
@@ -232,8 +231,6 @@ func memList(be *MemoryBackend, t backend.Type, done <-chan struct{}) <-chan str
ids = append(ids, entry.Name)
}
sort.Strings(ids)
debug.Log("MemoryBackend.List", "list %v: %v", t, ids)
go func() {