diff options
Diffstat (limited to 'java/testing.go')
-rw-r--r-- | java/testing.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/testing.go b/java/testing.go index 4a441fe0..713eca1a 100644 --- a/java/testing.go +++ b/java/testing.go @@ -18,7 +18,6 @@ import ( "fmt" "android/soong/android" - "android/soong/dexpreopt" ) func TestConfig(buildDir string, env map[string]string) android.Config { @@ -31,9 +30,6 @@ func TestConfig(buildDir string, env map[string]string) android.Config { config := android.TestArchConfig(buildDir, env) config.TestProductVariables.DeviceSystemSdkVersions = []string{"14", "15"} - pathCtx := android.PathContextForTesting(config, nil) - setDexpreoptTestGlobalConfig(config, dexpreopt.GlobalConfigForTests(pathCtx)) - return config } |