diff options
| author | Colin Cross <ccross@android.com> | 2019-02-01 16:53:07 -0800 |
|---|---|---|
| committer | Colin Cross <ccross@android.com> | 2019-02-01 17:17:58 -0800 |
| commit | 5f692ec219cb0c46db8f8372ec41e8c35315dd70 (patch) | |
| tree | 5bb25731a7ab374c44f354254cb70e27ae185b88 /python | |
| parent | a74ca046dacd052e2fe717ba670b309044fe9d15 (diff) | |
| download | build_soong-5f692ec219cb0c46db8f8372ec41e8c35315dd70.tar.gz build_soong-5f692ec219cb0c46db8f8372ec41e8c35315dd70.tar.bz2 build_soong-5f692ec219cb0c46db8f8372ec41e8c35315dd70.zip | |
Remove empty DepsMutator methods
Add an empty DepsMutator to ModuleBase so it doesn't have to be
implemented on every module that doesn't need it.
Test: all soong tests
Change-Id: I545a832a0dbf27386d3080377a75ea482cd9ce59
Diffstat (limited to 'python')
| -rw-r--r-- | python/defaults.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/defaults.go b/python/defaults.go index 641aca45..dba23a72 100644 --- a/python/defaults.go +++ b/python/defaults.go @@ -30,9 +30,6 @@ type Defaults struct { func (d *Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) { } -func (d *Defaults) DepsMutator(ctx android.BottomUpMutatorContext) { -} - func defaultsFactory() android.Module { return DefaultsFactory() } |
