mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
8230841: Remove oopDesc::equals()
Reviewed-by: rkennke, tschatzl
This commit is contained in:
parent
cb50d3b4f3
commit
2d6874b861
52 changed files with 119 additions and 132 deletions
|
@ -1257,7 +1257,7 @@ JVM_ENTRY(jobject, JVM_GetStackAccessControlContext(JNIEnv *env, jclass cls))
|
|||
protection_domain = method->method_holder()->protection_domain();
|
||||
}
|
||||
|
||||
if ((!oopDesc::equals(previous_protection_domain, protection_domain)) && (protection_domain != NULL)) {
|
||||
if ((previous_protection_domain != protection_domain) && (protection_domain != NULL)) {
|
||||
local_array->push(protection_domain);
|
||||
previous_protection_domain = protection_domain;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue