mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-13 11:55:38 +00:00
8300657: Remove null filtering in CLD oop handle area
Reviewed-by: coleenp, dholmes
This commit is contained in:
parent
95fafd094f
commit
b2071f79d8
@ -211,9 +211,7 @@ int ClassLoaderData::ChunkedHandleList::count() const {
|
||||
|
||||
inline void ClassLoaderData::ChunkedHandleList::oops_do_chunk(OopClosure* f, Chunk* c, const juint size) {
|
||||
for (juint i = 0; i < size; i++) {
|
||||
if (c->_data[i] != NULL) {
|
||||
f->do_oop(&c->_data[i]);
|
||||
}
|
||||
f->do_oop(&c->_data[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user