diff options
| author | 2023-10-17 19:20:53 +0000 | |
|---|---|---|
| committer | 2023-10-17 19:20:55 +0000 | |
| commit | 543f8407ef920180834da2316b4e103ea0763692 (patch) | |
| tree | 3b2521f8db11f8ced2bcc0a3729fd427c240d856 | |
| parent | 697dfada6ecb1fe290d65753b33ed3b9be840d43 (diff) | |
Remove unsued mutator registration
Bug: 179313531
Change-Id: Ide9fc0a9e1275bb6303c8a3114ce1c4e98915f75
Test: m nothing
| -rw-r--r-- | android/mutator.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/android/mutator.go b/android/mutator.go index 067d6c3df..3ff9e6198 100644 --- a/android/mutator.go +++ b/android/mutator.go @@ -698,12 +698,6 @@ func registerDepsMutator(ctx RegisterMutatorsContext) { ctx.BottomUp("deps", depsMutator).Parallel() } -func registerDepsMutatorBp2Build(ctx RegisterMutatorsContext) { - // TODO(b/179313531): Consider a separate mutator that only runs depsMutator for modules that are - // being converted to build targets. - ctx.BottomUp("deps", depsMutator).Parallel() -} - func (t *bottomUpMutatorContext) CreateBazelTargetModule( bazelProps bazel.BazelTargetModuleProperties, commonAttrs CommonAttributes, |