| commit | 2731eb474f3f1b9c7598bd477ebbbb1aae28d833 | [log] [tgz] |
|---|---|---|
| author | Orion Hodson <oth@google.com> | Fri Jul 24 12:10:12 2020 +0100 |
| committer | Orion Hodson <oth@google.com> | Sun Jul 26 21:08:18 2020 +0000 |
| tree | 848224dec52ebec3dcdfbfeda9c756e5fb552603 | |
| parent | 14464670d7d6a226b768873f25d63f5d025941ff [diff] [blame] |
More inclusive language fixes Bug: 161896447 Bug: 161850439 Bug: 161336379 Test: art/test.py --host Change-Id: I1519e22d40cb28f243dd75b12d455cfa844726fc
diff --git a/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java b/test/008-exceptions/src-multidex/MultiDexBadInitWrapper2.java index f3953bd..a66d818 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;