summaryrefslogtreecommitdiff
path: root/java/jacoco.go
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2024-05-07 17:49:10 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-05-07 17:49:10 +0000
commit3f01580c04bfe37c920e247015cce93cff2451c0 (patch)
treeb2165cd64e2876d8fa4c60bd322de81364143aed /java/jacoco.go
parent0d4a9ca79225bac10e4b62a663ee0cd09e3b314d (diff)
parenta963b94cde194257fa67ce9596026a4da2fe7523 (diff)
Merge "Make the enabled property configurable" into main
Diffstat (limited to 'java/jacoco.go')
-rw-r--r--java/jacoco.go2
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
}