Merge "Export: phonyFactory -> PhonyFactory"

This commit is contained in:
Treehugger Robot
2018-07-12 00:17:29 +00:00
committed by Gerrit Code Review

View File

@@ -23,7 +23,7 @@ import (
) )
func init() { func init() {
android.RegisterModuleType("phony", phonyFactory) android.RegisterModuleType("phony", PhonyFactory)
} }
type phony struct { type phony struct {
@@ -31,7 +31,7 @@ type phony struct {
requiredModuleNames []string requiredModuleNames []string
} }
func phonyFactory() android.Module { func PhonyFactory() android.Module {
module := &phony{} module := &phony{}
android.InitAndroidModule(module) android.InitAndroidModule(module)