diff options
author | 2019-02-01 16:53:07 -0800 | |
---|---|---|
committer | 2019-02-01 17:17:58 -0800 | |
commit | 5f692ec219cb0c46db8f8372ec41e8c35315dd70 (patch) | |
tree | 5bb25731a7ab374c44f354254cb70e27ae185b88 /java/prebuilt_apis.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 'java/prebuilt_apis.go')
-rw-r--r-- | java/prebuilt_apis.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/prebuilt_apis.go b/java/prebuilt_apis.go index c11e010a0..0410dafbf 100644 --- a/java/prebuilt_apis.go +++ b/java/prebuilt_apis.go @@ -47,10 +47,6 @@ type prebuiltApis struct { properties prebuiltApisProperties } -func (module *prebuiltApis) DepsMutator(ctx android.BottomUpMutatorContext) { - // no need to implement -} - func (module *prebuiltApis) GenerateAndroidBuildActions(ctx android.ModuleContext) { // no need to implement } |