mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8309044: Replace NULL with nullptr, final sweep of hotspot code
Reviewed-by: stefank, dholmes, kvn, amitkumar
This commit is contained in:
parent
88236263dc
commit
4f16161607
67 changed files with 114 additions and 114 deletions
|
@ -363,7 +363,7 @@ bool JVMCIEnv::pending_exception_as_string(const char** to_string, const char**
|
|||
if (!is_hotspot()) {
|
||||
JNIAccessMark jni(this, THREAD);
|
||||
jthrowable ex = jni()->ExceptionOccurred();
|
||||
if (ex != NULL) {
|
||||
if (ex != nullptr) {
|
||||
jni()->ExceptionClear();
|
||||
jobjectArray pair = (jobjectArray) jni()->CallStaticObjectMethod(
|
||||
JNIJVMCI::HotSpotJVMCIRuntime::clazz(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue