diff options
author | 2023-02-28 16:02:16 -0800 | |
---|---|---|
committer | 2023-02-28 16:51:32 -0800 | |
commit | 18994c73f11db00371be747c8dca6da1c01fa2ef (patch) | |
tree | 76516067d92eb71defdcb276a6dc910cb50bd266 /python/python.go | |
parent | 20eed826fd037d27f87631bd6e64e0ea651621e7 (diff) |
Replace SortedStringKeys with SortedKeys
Now that we have generics.
Bug: 193460475
Test: presubmits
Change-Id: I1594fd8feb505175d5c09c03ef397e5ffd5b09cb
Diffstat (limited to 'python/python.go')
-rw-r--r-- | python/python.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python.go b/python/python.go index 18e5b68dd..0ae7b3691 100644 --- a/python/python.go +++ b/python/python.go @@ -532,7 +532,7 @@ func (p *PythonLibraryModule) createSrcsZip(ctx android.ModuleContext, pkgPath s if len(relativeRootMap) > 0 { // in order to keep stable order of soong_zip params, we sort the keys here. - roots := android.SortedStringKeys(relativeRootMap) + roots := android.SortedKeys(relativeRootMap) // Use -symlinks=false so that the symlinks in the bazel output directory are followed parArgs := []string{"-symlinks=false"} |