Replace SortedStringKeys with SortedKeys am: 22f253cdfc

Original change: https://android-review.googlesource.com/c/platform/system/sepolicy/+/2463524

Change-Id: Id98acd71d25615c6f370e43991c375fecec51780
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Cole Faust 2023-03-01 23:32:17 +00:00 committed by Automerger Merge Worker
commit de73e80b8e

View file

@ -80,7 +80,7 @@ func (b *buildFiles) OutputFiles(tag string) (android.Paths, error) {
return paths, nil
}
return nil, fmt.Errorf("unknown tag %q. Supported tags are: %q", tag, strings.Join(android.SortedStringKeys(b.srcs), " "))
return nil, fmt.Errorf("unknown tag %q. Supported tags are: %q", tag, strings.Join(android.SortedKeys(b.srcs), " "))
}
var _ android.OutputFileProducer = (*buildFiles)(nil)