From d796f6f6dcb1c34bb7ed5c699588eb3938a3ed37 Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Wed, 23 Nov 2022 23:06:05 +0000 Subject: Stop module types being SdkAware Removes all usages of SdkBase and InitSdkAwareModule. Bug: 260237150 Test: m nothing Change-Id: I07db8afc805eadbeb5b23f2e1d2f51567eecfab0 --- java/system_modules.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'java/system_modules.go') diff --git a/java/system_modules.go b/java/system_modules.go index fec8ebaeb..0efa1a41c 100644 --- a/java/system_modules.go +++ b/java/system_modules.go @@ -114,7 +114,6 @@ func SystemModulesFactory() android.Module { module.AddProperties(&module.properties) android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon) android.InitDefaultableModule(module) - android.InitSdkAwareModule(module) return module } @@ -130,7 +129,6 @@ var _ SystemModulesProvider = (*systemModulesImport)(nil) type SystemModules struct { android.ModuleBase android.DefaultableModuleBase - android.SdkBase properties SystemModulesProperties @@ -215,7 +213,6 @@ func systemModulesImportFactory() android.Module { android.InitPrebuiltModule(module, &module.properties.Libs) android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon) android.InitDefaultableModule(module) - android.InitSdkAwareModule(module) return module } -- cgit v1.2.3-59-g8ed1b