forked from TrueCloudLab/restic
Use sort.Strings
This commit is contained in:
parent
2ddb7ffb7e
commit
337725c354
2 changed files with 3 additions and 3 deletions
|
@ -196,7 +196,7 @@ func uniqueNodeNames(tree1, tree2 *restic.Tree) (tree1Nodes, tree2Nodes map[stri
|
|||
uniqueNames = append(uniqueNames, name)
|
||||
}
|
||||
|
||||
sort.Sort(sort.StringSlice(uniqueNames))
|
||||
sort.Strings(uniqueNames)
|
||||
return tree1Nodes, tree2Nodes, uniqueNames
|
||||
}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ func GroupSnapshots(snapshots Snapshots, options string) (map[string]Snapshots,
|
|||
|
||||
if GroupByTag {
|
||||
tags = sn.Tags
|
||||
sort.StringSlice(tags).Sort()
|
||||
sort.Strings(tags)
|
||||
}
|
||||
if GroupByHost {
|
||||
hostname = sn.Hostname
|
||||
|
@ -60,7 +60,7 @@ func GroupSnapshots(snapshots Snapshots, options string) (map[string]Snapshots,
|
|||
paths = sn.Paths
|
||||
}
|
||||
|
||||
sort.StringSlice(sn.Paths).Sort()
|
||||
sort.Strings(sn.Paths)
|
||||
var k []byte
|
||||
var err error
|
||||
|
||||
|
|
Loading…
Reference in a new issue