diff options
author | 2024-10-28 14:26:58 -0700 | |
---|---|---|
committer | 2024-11-06 15:23:30 -0800 | |
commit | cc27a84f6142f621647ecfbd7595a2fa36b6b0aa (patch) | |
tree | 131516346f166f5b387ce2337075bbd345507c59 /android/config.go | |
parent | 5d52666baa511df1d72f244ef65e60327f35b8e2 (diff) |
Delete trim_against support
trim_against is never set in Android.bp files, and PRODUCT_TRIMMED_APEX
is never set to set the TrimmedApex config variable. Delete all the
dead code that is never reached.
Test: builds
Flag: EXEMPT dead code removal
Change-Id: I1dd2e2a5bcb1c38148149264776c718e02291649
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/android/config.go b/android/config.go index feed22f6a..380cd1c60 100644 --- a/android/config.go +++ b/android/config.go @@ -1786,10 +1786,6 @@ func (c *config) ApexCompressionEnabled() bool { return Bool(c.productVariables.CompressedApex) && !c.UnbundledBuildApps() } -func (c *config) ApexTrimEnabled() bool { - return Bool(c.productVariables.TrimmedApex) -} - func (c *config) UseSoongSystemImage() bool { return Bool(c.productVariables.UseSoongSystemImage) } |