From 310de66b122d9ab9c9cfd139372de7f75228ccbf Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Wed, 19 Feb 2025 16:15:07 -0800 Subject: Remove SortedStringKeys We have SortedKeys instead now. Test: Presubmits Change-Id: I27b38c63cdd770d6bef70e08ae38fdddc066c0f8 --- filesystem/android_device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filesystem/android_device.go') diff --git a/filesystem/android_device.go b/filesystem/android_device.go index 47c4e3d0c..4ee5681dc 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -351,7 +351,7 @@ func (a *androidDevice) buildTargetFilesZip(ctx android.ModuleContext) { if a.partitionProps.Super_partition_name != nil { superPartition := ctx.GetDirectDepProxyWithTag(*a.partitionProps.Super_partition_name, superPartitionDepTag) if info, ok := android.OtherModuleProvider(ctx, superPartition, SuperImageProvider); ok { - for _, partition := range android.SortedStringKeys(info.SubImageInfo) { + for _, partition := range android.SortedKeys(info.SubImageInfo) { filesystemsToCopy = append( filesystemsToCopy, targetFilesystemZipCopy{info.SubImageInfo[partition], strings.ToUpper(partition)}, -- cgit v1.2.3-59-g8ed1b