diff options
| author | Colin Cross <ccross@android.com> | 2023-12-14 14:46:23 -0800 |
|---|---|---|
| committer | Colin Cross <ccross@android.com> | 2023-12-14 16:12:22 -0800 |
| commit | 5a37718c956b1bfbda5e236c0fe50f08661a81de (patch) | |
| tree | f8a6bddfb1fc02a663884ec9d500a831607572be /snapshot | |
| parent | 313aa5475f50024da74e709a55f840eb7b263153 (diff) | |
Convert ModuleProvder to generic providers API
Convert all of the callers of ModuleProvider/ModuleHasProvider to use the
type-safe android.SingletonModuleProvider API.
Bug: 316410648
Test: builds
Change-Id: I6f11638546b64749e451cebbf33140248dc1d193
Diffstat (limited to 'snapshot')
| -rw-r--r-- | snapshot/host_fake_snapshot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snapshot/host_fake_snapshot.go b/snapshot/host_fake_snapshot.go index c4cfbb5ce..63cd4e1b6 100644 --- a/snapshot/host_fake_snapshot.go +++ b/snapshot/host_fake_snapshot.go @@ -119,7 +119,7 @@ func (c *hostFakeSingleton) GenerateBuildActions(ctx android.SingletonContext) { if !module.Enabled() || module.IsHideFromMake() { return } - apexInfo := ctx.ModuleProvider(module, android.ApexInfoProvider).(android.ApexInfo) + apexInfo, _ := android.SingletonModuleProvider(ctx, module, android.ApexInfoProvider) if !apexInfo.IsForPlatform() { return } |
