8064811: Use THREAD instead of CHECK_NULL in return statements

Reviewed-by: coleenp, simonis, dholmes
This commit is contained in:
Stefan Karlsson 2014-11-14 09:47:09 +01:00
parent 3b31df26c8
commit 95704b233c
25 changed files with 53 additions and 54 deletions

View file

@ -635,7 +635,7 @@ objArrayHandle Reflection::get_parameter_types(methodHandle method, int paramete
}
objArrayHandle Reflection::get_exception_types(methodHandle method, TRAPS) {
return method->resolved_checked_exceptions(CHECK_(objArrayHandle()));
return method->resolved_checked_exceptions(THREAD);
}