From fbe51fe0ec818f819b87096b5952b8488cee066a Mon Sep 17 00:00:00 2001 From: Ulya Trafimovich Date: Thu, 30 Sep 2021 14:03:09 +0100 Subject: [PATCH] Remove unused variable SKIP_BOOT_JARS_CHECK. The variable is no longer used after https://r.android.com/1737753. Bug: 189298093 Test: m Change-Id: I7f660fb205212d109f3e9ce2c805508ef481da24 --- android/config.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/android/config.go b/android/config.go index e7ebdefcc..c8d7cfdc9 100644 --- a/android/config.go +++ b/android/config.go @@ -854,11 +854,6 @@ func (c *config) AlwaysUsePrebuiltSdks() bool { return Bool(c.productVariables.Always_use_prebuilt_sdks) } -// Returns true if the boot jars check should be skipped. -func (c *config) SkipBootJarsCheck() bool { - return Bool(c.productVariables.Skip_boot_jars_check) -} - func (c *config) MinimizeJavaDebugInfo() bool { return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng) }