Follow-up for #1981 (#1982)

This commit is contained in:
John Kerl 2026-02-18 10:25:21 -05:00 committed by GitHub
parent f0a7c5832f
commit 8d85b46404
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,15 +50,6 @@ func StringListToSet(stringList []string) map[string]bool {
return stringSet
}
// SortStrings sorts strs in place.
//
// Deprecated: use slices.Sort instead.
//
//go:fix inline
func SortStrings(strs []string) {
slices.Sort(strs)
}
// ReverseStringList reverses strs in place.
//
// Deprecated: use slices.Reverse instead.