From 18994c73f11db00371be747c8dca6da1c01fa2ef Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Tue, 28 Feb 2023 16:02:16 -0800 Subject: Replace SortedStringKeys with SortedKeys Now that we have generics. Bug: 193460475 Test: presubmits Change-Id: I1594fd8feb505175d5c09c03ef397e5ffd5b09cb --- java/base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/base.go') diff --git a/java/base.go b/java/base.go index 2e77c1e1c..85f4a5e06 100644 --- a/java/base.go +++ b/java/base.go @@ -1003,7 +1003,7 @@ func (j *Module) collectJavacFlags( topLevelDirs[srcFileParts[0]] = true } } - patchPaths = append(patchPaths, android.SortedStringKeys(topLevelDirs)...) + patchPaths = append(patchPaths, android.SortedKeys(topLevelDirs)...) classPath := flags.classpath.FormJavaClassPath("") if classPath != "" { -- cgit v1.2.3-59-g8ed1b