OpenJDK / jdk / jdk
changeset 57503:a5254fa10a51
8236183: cleanup Java_jdk_internal_reflect_Reflection_getCallerClass naming
Reviewed-by: alanb, dholmes, redestad
author | mbaesken |
---|---|
date | Wed, 18 Dec 2019 15:10:10 +0100 |
parents | 9b5bc216e922 |
children | 68adcd2fbc6b |
files | src/java.base/share/native/libjava/Reflection.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/java.base/share/native/libjava/Reflection.c Thu Dec 19 03:48:14 2019 +0100 +++ b/src/java.base/share/native/libjava/Reflection.c Wed Dec 18 15:10:10 2019 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -28,7 +28,7 @@ #include "jdk_internal_reflect_Reflection.h" JNIEXPORT jclass JNICALL -Java_jdk_internal_reflect_Reflection_getCallerClass__(JNIEnv *env, jclass unused) +Java_jdk_internal_reflect_Reflection_getCallerClass(JNIEnv *env, jclass unused) { return JVM_GetCallerClass(env); }