diff options
author | 2024-09-27 16:50:59 +0000 | |
---|---|---|
committer | 2024-09-27 16:50:59 +0000 | |
commit | b16bd5dbe25ae4371cb3d743e46e67eae4c40b9b (patch) | |
tree | 78e33bc53ded26a74806bb513a40c7db582a0c87 /java/java.go | |
parent | 22ad6c00c7b5ef51687bcde6fcfe4e7988a16d2c (diff) | |
parent | 874273545b58747a617cf418dd93cb1902d7de89 (diff) |
Merge "Remove top down strict updatability checks" into main
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/java/java.go b/java/java.go index ab11363c1..92dcc6322 100644 --- a/java/java.go +++ b/java/java.go @@ -2612,13 +2612,6 @@ func (a *Import) JacocoReportClassesFile() android.Path { return nil } -func (j *Import) getStrictUpdatabilityLinting() bool { - return false -} - -func (j *Import) setStrictUpdatabilityLinting(bool) { -} - func (j *Import) DepsMutator(ctx android.BottomUpMutatorContext) { ctx.AddVariationDependencies(nil, libTag, j.properties.Libs...) ctx.AddVariationDependencies(nil, staticLibTag, j.properties.Static_libs.GetOrDefault(ctx, nil)...) @@ -3098,13 +3091,6 @@ func (j *DexImport) IsInstallable() bool { return true } -func (j *DexImport) getStrictUpdatabilityLinting() bool { - return false -} - -func (j *DexImport) setStrictUpdatabilityLinting(bool) { -} - func (j *DexImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { if len(j.properties.Jars) != 1 { ctx.PropertyErrorf("jars", "exactly one jar must be provided") |