diff options
author | 2024-10-09 15:29:27 -0700 | |
---|---|---|
committer | 2024-10-10 11:59:52 -0700 | |
commit | 8a9628098bbed62f3af13021b434238308adc7c1 (patch) | |
tree | 4163340a4c49f0c0db0d9aa145c4fc99f7693e2a /android/path_properties.go | |
parent | 2d2e68ffaf29af085201f5200db5938d6040b79c (diff) |
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
Diffstat (limited to 'android/path_properties.go')
-rw-r--r-- | android/path_properties.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/path_properties.go b/android/path_properties.go index 6210aee91..d80a8ed13 100644 --- a/android/path_properties.go +++ b/android/path_properties.go @@ -27,7 +27,7 @@ import ( // to the output file of the referenced module. func registerPathDepsMutator(ctx RegisterMutatorsContext) { - ctx.BottomUp("pathdeps", pathDepsMutator).Parallel() + ctx.BottomUp("pathdeps", pathDepsMutator) } // The pathDepsMutator automatically adds dependencies on any module that is listed with the |