diff options
Diffstat (limited to 'android/plugin.go')
-rw-r--r-- | android/plugin.go | 2 |
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)) } } |