mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 17:14:41 +02:00
8230808: Remove Access::equals()
Reviewed-by: tschatzl, shade
This commit is contained in:
parent
0848c76a66
commit
cb50d3b4f3
6 changed files with 3 additions and 105 deletions
|
@ -150,9 +150,9 @@ class oopDesc {
|
|||
}
|
||||
}
|
||||
|
||||
inline static bool equals(oop o1, oop o2) { return Access<>::equals(o1, o2); }
|
||||
inline static bool equals(oop o1, oop o2) { return equals_raw(o1, o2); }
|
||||
|
||||
inline static bool equals_raw(oop o1, oop o2) { return RawAccess<>::equals(o1, o2); }
|
||||
inline static bool equals_raw(oop o1, oop o2) { return o1 == o2; }
|
||||
|
||||
// Access to fields in a instanceOop through these methods.
|
||||
template <DecoratorSet decorator>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue