diff options
author | 2025-03-14 15:56:03 -0700 | |
---|---|---|
committer | 2025-03-14 15:56:03 -0700 | |
commit | f2aacebb28cf16f9c3fa4c59a9a9a931ab6b0846 (patch) | |
tree | da660a6da02da57b771ebc1f7ea1bf3189a90c47 /android/all_teams.go | |
parent | 5fe9b839b0b67218bcdfdbeec06b6813f040939e (diff) | |
parent | f22120fb1da7f75a571966124bb0da6a57fd4f07 (diff) |
Merge "Change CommonModuleInfoProvider to a pointer." into main
Diffstat (limited to 'android/all_teams.go')
-rw-r--r-- | android/all_teams.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/all_teams.go b/android/all_teams.go index 5e76e53bf..18a050f5d 100644 --- a/android/all_teams.go +++ b/android/all_teams.go @@ -116,7 +116,7 @@ func (t *allTeamsSingleton) GenerateBuildActions(ctx SingletonContext) { testOnly: testModInfo.TestOnly, topLevelTestTarget: testModInfo.TopLevelTarget, kind: ctx.ModuleType(module), - teamName: OtherModuleProviderOrDefault(ctx, module, CommonModuleInfoProvider).Team, + teamName: OtherModulePointerProviderOrDefault(ctx, module, CommonModuleInfoProvider).Team, } t.teams_for_mods[module.Name()] = entry |