< prev index next >
src/share/vm/runtime/reflection.hpp
Print this page
@@ -101,12 +101,12 @@
// inner class reflection
// raise an ICCE unless the required relationship can be proven to hold
// If inner_is_member, require the inner to be a member of the outer.
// If !inner_is_member, require the inner to be anonymous (a non-member).
// Caller is responsible for figuring out in advance which case must be true.
- static void check_for_inner_class(instanceKlassHandle outer,
- instanceKlassHandle inner,
+ static void check_for_inner_class(const InstanceKlass* outer,
+ const InstanceKlass* inner,
bool inner_is_member,
TRAPS);
//
// Support for reflection based on dynamic bytecode generation (JDK 1.4)
< prev index next >