Remove extra space in error message
Change-Id: I45420afc37736ec8fecd0c489c35c14b377a71a5 Test: N/A
This commit is contained in:
parent
aa8ceca851
commit
ca9ccec822
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ type SingletonModuleBase struct {
|
|||
func (smb *SingletonModuleBase) GenerateBuildActions(ctx blueprint.ModuleContext) {
|
||||
smb.lock.Lock()
|
||||
if smb.variant != "" {
|
||||
ctx.ModuleErrorf("GenerateAndroidBuildActions already called for variant %q, SingletonModules can only have one variant", smb.variant)
|
||||
ctx.ModuleErrorf("GenerateAndroidBuildActions already called for variant %q, SingletonModules can only have one variant", smb.variant)
|
||||
}
|
||||
smb.variant = ctx.ModuleSubDir()
|
||||
smb.lock.Unlock()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue