summaryrefslogtreecommitdiff
path: root/test/008-exceptions/src/MultiDexBadInitWrapper1.java
diff options
context:
space:
mode:
authorAndroid Build Role Account android-build-prod <android-build-team-robot@google.com>2020-09-21 23:15:29 +0000
committerAndroid Build Role Account android-build-prod <android-build-team-robot@google.com>2020-09-21 23:15:29 +0000
commit116fbc6ed70876411ed8bb0e5b45d53dd1c68376 (patch)
treebdd74611d3ca6b1960ef77cf0c7397135fa8795e /test/008-exceptions/src/MultiDexBadInitWrapper1.java
parenta703dd7da6d39600f6b6966be99a9e79131128ca (diff)
parent549d9908c95143829c12b7b9cfcd4917b61e96e5 (diff)
Snap for 6852288 from 549d9908c95143829c12b7b9cfcd4917b61e96e5 to s-keystone-qcom-release
Change-Id: Ief9e71b0a6ac2a7141e921bef73d6a07020dc2ec
Diffstat (limited to 'test/008-exceptions/src/MultiDexBadInitWrapper1.java')
-rw-r--r--test/008-exceptions/src/MultiDexBadInitWrapper1.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/008-exceptions/src/MultiDexBadInitWrapper1.java b/test/008-exceptions/src/MultiDexBadInitWrapper1.java
index 059e6a3d7d..563e2c3972 100644
--- a/test/008-exceptions/src/MultiDexBadInitWrapper1.java
+++ b/test/008-exceptions/src/MultiDexBadInitWrapper1.java
@@ -15,9 +15,9 @@
*/
class MultiDexBadInitWrapper1 {
- 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;