diff options
author | Ulya Trafimovich <skvadrik@google.com> | 2020-06-03 11:40:45 +0100 |
---|---|---|
committer | Ulya Trafimovich <skvadrik@google.com> | 2020-06-03 11:40:45 +0100 |
commit | 562c240185dd4adcbdb75d2924c69657f6ac7cff (patch) | |
tree | e98ec8ccea2fc7974028b859a6e92d1be6ee5896 /java/hiddenapi_singleton.go | |
parent | 4a19d08d39f85403708111dbe44bdd1174959566 (diff) |
Rename DexJar interface method to DexJarBuildPath.
This is a prerequisite change before adding DexJarInstallPath.
Test: lunch aosp_cf_phone-userdebug && m
Change-Id: I033e08b8bb06c0a844a6bbbfcdc48ce33e9c95cf
Diffstat (limited to 'java/hiddenapi_singleton.go')
-rw-r--r-- | java/hiddenapi_singleton.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi_singleton.go b/java/hiddenapi_singleton.go index c7f7cbdfe..2f35798b5 100644 --- a/java/hiddenapi_singleton.go +++ b/java/hiddenapi_singleton.go @@ -147,7 +147,7 @@ func stubFlagsRule(ctx android.SingletonContext) { name := ctx.ModuleName(module) for moduleList, pathList := range moduleListToPathList { if i := android.IndexList(name, *moduleList); i != -1 { - pathList[i] = j.DexJar() + pathList[i] = j.DexJarBuildPath() } } } |