diff options
author | 2023-10-16 13:30:51 -0700 | |
---|---|---|
committer | 2023-10-16 14:20:00 -0700 | |
commit | 3b703f3c022725438da5fbf478833db971cd992a (patch) | |
tree | b185280780c498735588d4169c914aabdc55f4c7 /android/module.go | |
parent | 7b4de4b859fbf56c75732d92b5e516ff387826be (diff) |
Remove baseModuleContext.debug
It was never set to true.
Test: Presubmits
Change-Id: I9944d90b7e75beb4a7fe259c72bc7a82e42f593d
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/android/module.go b/android/module.go index ce6c78d35..b73f449fc 100644 --- a/android/module.go +++ b/android/module.go @@ -380,7 +380,6 @@ type BaseModuleContext interface { Device() bool Darwin() bool Windows() bool - Debug() bool PrimaryArch() bool } @@ -2675,7 +2674,6 @@ type baseModuleContext struct { target Target multiTargets []Target targetPrimary bool - debug bool walkPath []Module tagPath []blueprint.DependencyTag @@ -3306,10 +3304,6 @@ func (b *baseModuleContext) Windows() bool { return b.os == Windows } -func (b *baseModuleContext) Debug() bool { - return b.debug -} - func (b *baseModuleContext) PrimaryArch() bool { if len(b.config.Targets[b.target.Os]) <= 1 { return true |