diff options
author | 2023-02-28 16:02:16 -0800 | |
---|---|---|
committer | 2023-02-28 16:51:32 -0800 | |
commit | 18994c73f11db00371be747c8dca6da1c01fa2ef (patch) | |
tree | 76516067d92eb71defdcb276a6dc910cb50bd266 /java/classpath_fragment.go | |
parent | 20eed826fd037d27f87631bd6e64e0ea651621e7 (diff) |
Replace SortedStringKeys with SortedKeys
Now that we have generics.
Bug: 193460475
Test: presubmits
Change-Id: I1594fd8feb505175d5c09c03ef397e5ffd5b09cb
Diffstat (limited to 'java/classpath_fragment.go')
-rw-r--r-- | java/classpath_fragment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/classpath_fragment.go b/java/classpath_fragment.go index 259e977d8..cf81ddb5d 100644 --- a/java/classpath_fragment.go +++ b/java/classpath_fragment.go @@ -111,7 +111,7 @@ func gatherPossibleApexModuleNamesAndStems(ctx android.ModuleContext, contents [ ctx.PropertyErrorf("contents", "%v is not a ModuleWithStem", name) } } - return android.SortedStringKeys(set) + return android.SortedKeys(set) } // Converts android.ConfiguredJarList into a list of classpathJars for each given classpathType. |