aboutsummaryrefslogtreecommitdiff
path: root/java/system_modules_test.go
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2023-12-14 14:46:23 -0800
committerColin Cross <ccross@android.com>2023-12-14 16:12:22 -0800
commit5a37718c956b1bfbda5e236c0fe50f08661a81de (patch)
treef8a6bddfb1fc02a663884ec9d500a831607572be /java/system_modules_test.go
parent313aa5475f50024da74e709a55f840eb7b263153 (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 'java/system_modules_test.go')
-rw-r--r--java/system_modules_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/system_modules_test.go b/java/system_modules_test.go
index 7b5a3867e..2ceca5d0b 100644
--- a/java/system_modules_test.go
+++ b/java/system_modules_test.go
@@ -24,7 +24,7 @@ func getModuleHeaderJarsAsRelativeToTopPaths(result *android.TestResult, moduleN
paths := []string{}
for _, moduleName := range moduleNames {
module := result.Module(moduleName, "android_common")
- info := result.ModuleProvider(module, JavaInfoProvider).(JavaInfo)
+ info, _ := android.SingletonModuleProvider(result, module, JavaInfoProvider)
paths = append(paths, info.HeaderJars.RelativeToTop().Strings()...)
}
return paths