aboutsummaryrefslogtreecommitdiff
path: root/apex
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2023-02-28 16:02:16 -0800
committerCole Faust <colefaust@google.com>2023-02-28 16:51:32 -0800
commit18994c73f11db00371be747c8dca6da1c01fa2ef (patch)
tree76516067d92eb71defdcb276a6dc910cb50bd266 /apex
parent20eed826fd037d27f87631bd6e64e0ea651621e7 (diff)
downloadsoong-18994c73f11db00371be747c8dca6da1c01fa2ef.tar.gz
Replace SortedStringKeys with SortedKeys
Now that we have generics. Bug: 193460475 Test: presubmits Change-Id: I1594fd8feb505175d5c09c03ef397e5ffd5b09cb
Diffstat (limited to 'apex')
-rw-r--r--apex/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go
index a62f63c61..7248d9788 100644
--- a/apex/builder.go
+++ b/apex/builder.go
@@ -543,7 +543,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
if len(installMapSet) > 0 {
var installs []string
- installs = append(installs, android.SortedStringKeys(installMapSet)...)
+ installs = append(installs, android.SortedKeys(installMapSet)...)
a.SetLicenseInstallMap(installs)
}