diff options
| author | 2019-02-04 17:38:05 +0000 | |
|---|---|---|
| committer | 2019-02-04 17:38:05 +0000 | |
| commit | 54956abf1f578475d08bf9fbcdc12c9d733ff19d (patch) | |
| tree | c4de22cf3db0adbef9e5b800c52094ead5c5af7e /java/java_test.go | |
| parent | 0c1fabbb325882ae96404b36faaa601776e500eb (diff) | |
| parent | 5f692ec219cb0c46db8f8372ec41e8c35315dd70 (diff) | |
Merge changes I545a832a,I85a51b04
* changes:
Remove empty DepsMutator methods
Replace *[]string with []string in product variables
Diffstat (limited to 'java/java_test.go')
| -rw-r--r-- | java/java_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java_test.go b/java/java_test.go index a0b8952c4..57b2a5936 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -61,7 +61,7 @@ func testConfig(env map[string]string) android.Config { env["ANDROID_JAVA8_HOME"] = "jdk8" } config := android.TestArchConfig(buildDir, env) - config.TestProductVariables.DeviceSystemSdkVersions = &[]string{"14", "15"} + config.TestProductVariables.DeviceSystemSdkVersions = []string{"14", "15"} return config } |