summaryrefslogtreecommitdiff
path: root/android/plugin.go
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2025-02-19 16:15:07 -0800
committer Cole Faust <colefaust@google.com> 2025-02-19 16:15:07 -0800
commit310de66b122d9ab9c9cfd139372de7f75228ccbf (patch)
tree1929578bf78d833015c5b29d88dc60b3a8ba81fb /android/plugin.go
parent4b1a0b83301ff2dfeaa1de93f741a8886ed4ffeb (diff)
Remove SortedStringKeys
We have SortedKeys instead now. Test: Presubmits Change-Id: I27b38c63cdd770d6bef70e08ae38fdddc066c0f8
Diffstat (limited to 'android/plugin.go')
-rw-r--r--android/plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/plugin.go b/android/plugin.go
index d62fc9453..4348f1475 100644
--- a/android/plugin.go
+++ b/android/plugin.go
@@ -135,6 +135,6 @@ func (p *pluginSingleton) GenerateBuildActions(ctx SingletonContext) {
disallowedPlugins[name] = true
})
if len(disallowedPlugins) > 0 {
- ctx.Errorf("New plugins are not supported; however %q were found. Please reach out to the build team or use BUILD_BROKEN_PLUGIN_VALIDATION (see Changes.md for more info).", SortedStringKeys(disallowedPlugins))
+ ctx.Errorf("New plugins are not supported; however %q were found. Please reach out to the build team or use BUILD_BROKEN_PLUGIN_VALIDATION (see Changes.md for more info).", SortedKeys(disallowedPlugins))
}
}