diff options
author | 2019-02-01 16:53:07 -0800 | |
---|---|---|
committer | 2019-02-01 17:17:58 -0800 | |
commit | 5f692ec219cb0c46db8f8372ec41e8c35315dd70 (patch) | |
tree | 5bb25731a7ab374c44f354254cb70e27ae185b88 /python/defaults.go | |
parent | a74ca046dacd052e2fe717ba670b309044fe9d15 (diff) |
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/defaults.go')
-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 641aca456..dba23a729 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() } |