diff options
author | 2024-05-01 19:33:59 +0000 | |
---|---|---|
committer | 2024-05-01 19:33:59 +0000 | |
commit | 1256e6f47ad2e2ae5eccefea98c61f85396e800f (patch) | |
tree | 7fad202a89bfb4efe98bea8b06c13b20861a19cf /java/jacoco.go | |
parent | 72a12da662a602d7f69186e2efc4a1e7702be504 (diff) | |
parent | 0e0d7490625c713bb71c254bd55129b0a30898a3 (diff) |
Merge "Make the enabled property configurable" into aosp-main-future
Diffstat (limited to 'java/jacoco.go')
-rw-r--r-- | java/jacoco.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/jacoco.go b/java/jacoco.go index a820b3855..696a0cc37 100644 --- a/java/jacoco.go +++ b/java/jacoco.go @@ -53,7 +53,7 @@ func jacocoDepsMutator(ctx android.BottomUpMutatorContext) { } j, ok := ctx.Module().(instrumentable) - if !ctx.Module().Enabled() || !ok { + if !ctx.Module().Enabled(ctx) || !ok { return } |