diff options
author | 2025-02-19 16:15:07 -0800 | |
---|---|---|
committer | 2025-02-19 16:15:07 -0800 | |
commit | 310de66b122d9ab9c9cfd139372de7f75228ccbf (patch) | |
tree | 1929578bf78d833015c5b29d88dc60b3a8ba81fb /filesystem/android_device.go | |
parent | 4b1a0b83301ff2dfeaa1de93f741a8886ed4ffeb (diff) |
Remove SortedStringKeys
We have SortedKeys instead now.
Test: Presubmits
Change-Id: I27b38c63cdd770d6bef70e08ae38fdddc066c0f8
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
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)}, |