labels: avoid lint warning on New()

This code is a bit cleaner.

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
Bryan Boreham 2022-12-13 18:14:58 +00:00
parent 1695a7ee2f
commit a19b369f9e
1 changed files with 1 additions and 3 deletions

View File

@ -357,9 +357,7 @@ func EmptyLabels() Labels {
// The caller has to guarantee that all label names are unique.
func New(ls ...Label) Labels {
set := make(Labels, 0, len(ls))
for _, l := range ls {
set = append(set, l)
}
set = append(set, ls...)
sort.Sort(set)
return set