diff options
| author | 2020-07-24 12:10:12 +0100 | |
|---|---|---|
| committer | 2020-07-26 21:08:18 +0000 | |
| commit | 2731eb474f3f1b9c7598bd477ebbbb1aae28d833 (patch) | |
| tree | 848224dec52ebec3dcdfbfeda9c756e5fb552603 /test/683-clinit-inline-static-invoke/src | |
| parent | 14464670d7d6a226b768873f25d63f5d025941ff (diff) | |
More inclusive language fixes
Bug: 161896447
Bug: 161850439
Bug: 161336379
Test: art/test.py --host
Change-Id: I1519e22d40cb28f243dd75b12d455cfa844726fc
Diffstat (limited to 'test/683-clinit-inline-static-invoke/src')
| -rw-r--r-- | test/683-clinit-inline-static-invoke/src/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/683-clinit-inline-static-invoke/src/Main.java b/test/683-clinit-inline-static-invoke/src/Main.java index b4ccfaa95b..ceccffbd92 100644 --- a/test/683-clinit-inline-static-invoke/src/Main.java +++ b/test/683-clinit-inline-static-invoke/src/Main.java @@ -26,6 +26,6 @@ public class Main { // TypeId in the current DexFile, we erroneously provided the type index from the // declaring DexFile and that caused a crash. This was fixed by changing the // ClinitCheck entrypoint to take the Class reference from LoadClass. - int dummy = MyTimeZone.getDefaultTimeZoneType(); + int placeholder = MyTimeZone.getDefaultTimeZoneType(); } } |