commit | 166aaee6aa39c20c87113b3fcf0dcd81e0a934cb | [log] [tgz] |
---|---|---|
author | Andreas Gampe <agampe@google.com> | Mon Jul 18 08:27:23 2016 -0700 |
committer | Andreas Gampe <agampe@google.com> | Fri Jul 22 20:37:07 2016 -0700 |
tree | 70ab523f146d164ece8a0e94dbc499783005e3dc | |
parent | 115c1de1f812d380449ef89cfe50cc4fb4289275 [diff] [blame] |
ART: Fix type parameter in tests Move Class to Class<?>, Constructor to Constructor<?>, and in general clean up reflection. Test: m test-art-host-run-test Change-Id: I3a4223ee8d14d032015edf34bf27135757f7138c
diff --git a/test/612-jit-dex-cache/src-ex/LoadedByAppClassLoader.java b/test/612-jit-dex-cache/src-ex/LoadedByAppClassLoader.java index 1d6158a..fcb314d 100644 --- a/test/612-jit-dex-cache/src-ex/LoadedByAppClassLoader.java +++ b/test/612-jit-dex-cache/src-ex/LoadedByAppClassLoader.java
@@ -29,7 +29,7 @@ } class OtherClass { - public static Class getB() { + public static Class<?> getB() { // This used to return the B class of another class loader. return B.class; }