From 8a9628098bbed62f3af13021b434238308adc7c1 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 9 Oct 2024 15:29:27 -0700 Subject: Remove MutatorHandle.Parallel() All mutators are parallel by default, remove the explicit Parallel() calls. Bug: 372540665 Test: all soong tests pass Flag: EXEMPT refactor Change-Id: I41e3a71bd13c75b7fceae91b1c4cfe678ab62df2 --- java/bootclasspath.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/bootclasspath.go') 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) }) } -- cgit v1.2.3-59-g8ed1b