diff options
author | 2024-10-10 22:32:21 +0000 | |
---|---|---|
committer | 2024-10-10 22:32:21 +0000 | |
commit | 004074db579a9e1abf07fe4c45f35d4d5247cac0 (patch) | |
tree | d92460b53feb6abc37aa85cf755dc35631208937 /android/namespace.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 'android/namespace.go')
-rw-r--r-- | android/namespace.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/namespace.go b/android/namespace.go index 866d12594..8b3ebc4d5 100644 --- a/android/namespace.go +++ b/android/namespace.go @@ -457,7 +457,7 @@ func NamespaceFactory() Module { } func RegisterNamespaceMutator(ctx RegisterMutatorsContext) { - ctx.BottomUp("namespace_deps", namespaceMutator).Parallel().MutatesGlobalState() + ctx.BottomUp("namespace_deps", namespaceMutator).MutatesGlobalState() } func namespaceMutator(ctx BottomUpMutatorContext) { |