diff options
author | Android Build Role Account android-build-prod <android-build-team-robot@google.com> | 2020-09-21 23:15:29 +0000 |
---|---|---|
committer | Android Build Role Account android-build-prod <android-build-team-robot@google.com> | 2020-09-21 23:15:29 +0000 |
commit | 116fbc6ed70876411ed8bb0e5b45d53dd1c68376 (patch) | |
tree | bdd74611d3ca6b1960ef77cf0c7397135fa8795e /test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java | |
parent | a703dd7da6d39600f6b6966be99a9e79131128ca (diff) | |
parent | 549d9908c95143829c12b7b9cfcd4917b61e96e5 (diff) |
Snap for 6852288 from 549d9908c95143829c12b7b9cfcd4917b61e96e5 to s-keystone-qcom-release
Change-Id: Ief9e71b0a6ac2a7141e921bef73d6a07020dc2ec
Diffstat (limited to 'test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java')
-rw-r--r-- | test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java b/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java index f3953bd4c7..a66d818366 100644 --- a/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java +++ b/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java @@ -15,9 +15,9 @@ */ class MultiDexBadInitWrapper2 { - public static void setDummy(int value) { + public static void setIntField(int value) { if (doThrow) { throw new Error(); } - MultiDexBadInit.dummy = value; + MultiDexBadInit.intField = value; } public static boolean doThrow = false; |