Skip to content

Commit

Permalink
Remove special handling of non-self-fwded objects
Browse files Browse the repository at this point in the history
  • Loading branch information
rkennke committed Aug 22, 2024
1 parent 86239af commit ba54b2d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/hotspot/share/gc/serial/defNewGeneration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,6 @@ void DefNewGeneration::remove_forwarding_pointers() {
void do_object(oop obj) override {
if (obj->is_self_forwarded()) {
obj->unset_self_forwarded();
} else if (obj->is_forwarded()) {
obj->init_mark();
}
}
} cl;
Expand Down

0 comments on commit ba54b2d

Please sign in to comment.