Skip to content

Commit b2071f7

Browse files
committedJan 25, 2023
8300657: Remove null filtering in CLD oop handle area
Reviewed-by: coleenp, dholmes
1 parent 95fafd0 commit b2071f7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎src/hotspot/share/classfile/classLoaderData.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,7 @@ int ClassLoaderData::ChunkedHandleList::count() const {
211211

212212
inline void ClassLoaderData::ChunkedHandleList::oops_do_chunk(OopClosure* f, Chunk* c, const juint size) {
213213
for (juint i = 0; i < size; i++) {
214-
if (c->_data[i] != NULL) {
215-
f->do_oop(&c->_data[i]);
216-
}
214+
f->do_oop(&c->_data[i]);
217215
}
218216
}
219217

0 commit comments

Comments
 (0)