diff options
author | 2024-06-13 21:25:45 +0000 | |
---|---|---|
committer | 2024-06-13 21:56:23 +0000 | |
commit | 7583e835f79e74119ef9c96a4c7c4815b4547b0c (patch) | |
tree | 7a4266c6ae07010102d6e96f79a540fa31e9e485 /android/image.go | |
parent | 71825167e0b4a9f078daf5872ea148b43b86b298 (diff) |
Cleanup ImageInterface.SetImageVariation
This change modifies the interface method of
ImageInterface.SetImageVariation so that the image variation is set
directly at the caller image variation module, instead of passing the
pointer to set the image variation.
Test: m nothing
Change-Id: I8eadb5149365530243e19a8cd37eb49d335fbeef
Diffstat (limited to 'android/image.go')
-rw-r--r-- | android/image.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/android/image.go b/android/image.go index bc6b8cd86..9cad05656 100644 --- a/android/image.go +++ b/android/image.go @@ -44,9 +44,8 @@ type ImageInterface interface { ExtraImageVariations(ctx BaseModuleContext) []string // SetImageVariation is called for each newly created image variant. The receiver is the original - // module, "variation" is the name of the newly created variant and "module" is the newly created - // variant itself. - SetImageVariation(ctx BaseModuleContext, variation string, module Module) + // module, "variation" is the name of the newly created variant. "variation" is set on the receiver. + SetImageVariation(ctx BaseModuleContext, variation string) } const ( @@ -106,7 +105,7 @@ func imageMutator(ctx BottomUpMutatorContext) { mod := ctx.CreateVariations(variations...) for i, v := range variations { mod[i].base().setImageVariation(v) - m.SetImageVariation(ctx, v, mod[i]) + mod[i].(ImageInterface).SetImageVariation(ctx, v) } } } |