chore: use sort.Strings(...) instead of sort.Sort(sort.StringSlice(...))

This commit is contained in:
guoguangwu 2023-06-17 14:53:50 +08:00
Родитель 38bcd4ae46
Коммит a9e068a136
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1320,7 +1320,7 @@ func (s scopeSet) String() string {
for scope := range s {
scopes = append(scopes, scope)
}
sort.Sort(sort.StringSlice(scopes))
sort.Strings(scopes)
return strings.Join(scopes, ", ")
}