diff options
author | 2024-10-10 22:32:21 +0000 | |
---|---|---|
committer | 2024-10-10 22:32:21 +0000 | |
commit | 004074db579a9e1abf07fe4c45f35d4d5247cac0 (patch) | |
tree | d92460b53feb6abc37aa85cf755dc35631208937 /java/bootclasspath.go | |
parent | fef73af257e936d9b6345ce30ad528c28bbccb98 (diff) | |
parent | 8a9628098bbed62f3af13021b434238308adc7c1 (diff) |
Merge changes from topic "remove-non-parallel-mutator" into main
* changes:
Remove MutatorHandle.Parallel()
Fix TestFinalDepsPhase for parallel mutator
Diffstat (limited to 'java/bootclasspath.go')
-rw-r--r-- | java/bootclasspath.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/bootclasspath.go b/java/bootclasspath.go index 029f6f623..3413cf350 100644 --- a/java/bootclasspath.go +++ b/java/bootclasspath.go @@ -29,7 +29,7 @@ func init() { func registerBootclasspathBuildComponents(ctx android.RegistrationContext) { ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) { - ctx.BottomUp("bootclasspath_deps", bootclasspathDepsMutator).Parallel() + ctx.BottomUp("bootclasspath_deps", bootclasspathDepsMutator) }) } |