diff options
Diffstat (limited to 'java/bootclasspath_fragment.go')
-rw-r--r-- | java/bootclasspath_fragment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/bootclasspath_fragment.go b/java/bootclasspath_fragment.go index e151d6315..9310b12b1 100644 --- a/java/bootclasspath_fragment.go +++ b/java/bootclasspath_fragment.go @@ -651,7 +651,7 @@ type bootclasspathFragmentSdkMemberProperties struct { Core_platform_stub_libs []string // Flag files by *hiddenAPIFlagFileCategory - Flag_files_by_category map[*hiddenAPIFlagFileCategory]android.Paths + Flag_files_by_category FlagFilesByCategory // The path to the generated stub-flags.csv file. Stub_flags_path android.OptionalPath @@ -689,7 +689,7 @@ func (b *bootclasspathFragmentSdkMemberProperties) PopulateFromVariant(ctx andro // Get the flag file information from the module. mctx := ctx.SdkModuleContext() flagFileInfo := mctx.OtherModuleProvider(module, hiddenAPIFlagFileInfoProvider).(hiddenAPIFlagFileInfo) - b.Flag_files_by_category = flagFileInfo.categoryToPaths + b.Flag_files_by_category = flagFileInfo.FlagFilesByCategory // Copy all the generated file paths. b.Stub_flags_path = pathsToOptionalPath(flagFileInfo.StubFlagsPaths) |