summaryrefslogtreecommitdiff
path: root/java/platform_bootclasspath.go
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2022-08-19 15:08:13 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-08-19 15:08:13 +0000
commit1149c2c185a53ef0d0f13dd8bdb52095a8ef4049 (patch)
tree2c6927a4f9034dee569414e4544439c59db9d085 /java/platform_bootclasspath.go
parente29d230b752d11abca3bb558a04c6d57eef9104e (diff)
parent9b61abbd840503dd9bd2eebf7fee8be627be4eb5 (diff)
Merge changes I66445302,I773279a4
* changes: Push Hidden_api inside HiddenAPIFlagFileProperties Refactor handling of hidden API property provided information
Diffstat (limited to 'java/platform_bootclasspath.go')
-rw-r--r--java/platform_bootclasspath.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/platform_bootclasspath.go b/java/platform_bootclasspath.go
index 1e2723845..24f8253ae 100644
--- a/java/platform_bootclasspath.go
+++ b/java/platform_bootclasspath.go
@@ -62,7 +62,7 @@ type platformBootclasspathModule struct {
type platformBootclasspathProperties struct {
BootclasspathFragmentsDepsProperties
- Hidden_api HiddenAPIFlagFileProperties
+ HiddenAPIFlagFileProperties
}
func platformBootclasspathFactory() android.SingletonModule {
@@ -372,7 +372,7 @@ func (b *platformBootclasspathModule) createAndProvideMonolithicHiddenAPIInfo(ct
temporaryInput := newHiddenAPIFlagInput()
// Create paths to the flag files specified in the properties.
- temporaryInput.extractFlagFilesFromProperties(ctx, &b.properties.Hidden_api)
+ temporaryInput.extractFlagFilesFromProperties(ctx, &b.properties.HiddenAPIFlagFileProperties)
// Create the monolithic info, by starting with the flag files specified on this and then merging
// in information from all the fragment dependencies of this.