diff options
| author | 2020-12-21 16:19:23 +0000 | |
|---|---|---|
| committer | 2020-12-21 16:19:23 +0000 | |
| commit | 4eb504858505a9c860854a9d06e409422fa48aeb (patch) | |
| tree | abd43cb80c3b3a9419e77c913703e9479ac7dcc4 /java/java.go | |
| parent | 7461e3c19a54561434ae56c14c83f8b4ddde4b07 (diff) | |
| parent | 4b97a5661584e6db7942146e6dd0f343f4c6108e (diff) | |
Merge "Remove the return value from dexpreopt"
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/java.go b/java/java.go index 02d78f2bf..9e47b2f20 100644 --- a/java/java.go +++ b/java/java.go @@ -1786,7 +1786,7 @@ func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) { j.dexJarFile = dexOutputFile // Dexpreopting - dexOutputFile = j.dexpreopt(ctx, dexOutputFile) + j.dexpreopt(ctx, dexOutputFile) j.maybeStrippedDexJarFile = dexOutputFile @@ -3123,7 +3123,7 @@ func (j *DexImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { j.dexJarFile = dexOutputFile - dexOutputFile = j.dexpreopt(ctx, dexOutputFile) + j.dexpreopt(ctx, dexOutputFile) j.maybeStrippedDexJarFile = dexOutputFile |