summaryrefslogtreecommitdiff
path: root/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java
diff options
context:
space:
mode:
authorOrion Hodson <oth@google.com>2020-07-24 12:10:12 +0100
committerOrion Hodson <oth@google.com>2020-07-26 21:08:18 +0000
commit2731eb474f3f1b9c7598bd477ebbbb1aae28d833 (patch)
tree848224dec52ebec3dcdfbfeda9c756e5fb552603 /test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java
parent14464670d7d6a226b768873f25d63f5d025941ff (diff)
More inclusive language fixes
Bug: 161896447 Bug: 161850439 Bug: 161336379 Test: art/test.py --host Change-Id: I1519e22d40cb28f243dd75b12d455cfa844726fc
Diffstat (limited to 'test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java')
-rw-r--r--test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java4
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;