diff options
author | 2021-11-11 18:59:15 -0800 | |
---|---|---|
committer | 2021-12-15 15:22:53 -0800 | |
commit | c68db4b305b9186d8d9b4e83b298a33fa810d06b (patch) | |
tree | d8a61ff4d4694bedd12cbb3ef100f974b24e08e3 /java/dexpreopt.go | |
parent | e23a32bdc5dc07bea8d602662b2b0020159a6742 (diff) |
Remove InstallBypassMake and ToMakePath
InstallBypassMake and ToMakePath are obsolete, remove them.
Bug: 204136549
Test: m checkbuild
Change-Id: Ie5a6f7254b3d317ed6039e114ed6aec35e1ce273
Diffstat (limited to 'java/dexpreopt.go')
-rw-r--r-- | java/dexpreopt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/dexpreopt.go b/java/dexpreopt.go index f3a53eed9..a715aadd7 100644 --- a/java/dexpreopt.go +++ b/java/dexpreopt.go @@ -381,7 +381,7 @@ func (d *dexpreopter) AndroidMkEntriesForApex() []android.AndroidMkEntries { OutputFile: android.OptionalPathForPath(install.outputPathOnHost), ExtraEntries: []android.AndroidMkExtraEntriesFunc{ func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { - entries.SetString("LOCAL_MODULE_PATH", install.installDirOnDevice.ToMakePath().String()) + entries.SetString("LOCAL_MODULE_PATH", install.installDirOnDevice.String()) entries.SetString("LOCAL_INSTALLED_MODULE_STEM", install.installFileOnDevice) entries.SetString("LOCAL_NOT_AVAILABLE_FOR_PLATFORM", "false") }, |