Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8297217: Incorrect generation name in the heap verification log messa…
…ge with Serial GC

Reviewed-by: kbarrett, tschatzl
  • Loading branch information
ashu-mehra authored and Kim Barrett committed Nov 20, 2022
1 parent dd55310 commit 651e547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/shared/genCollectedHeap.cpp
Expand Up @@ -1062,7 +1062,7 @@ void GenCollectedHeap::verify(VerifyOption option /* ignored */) {
log_debug(gc, verify)("%s", _old_gen->name());
_old_gen->verify();

log_debug(gc, verify)("%s", _old_gen->name());
log_debug(gc, verify)("%s", _young_gen->name());
_young_gen->verify();

log_debug(gc, verify)("RemSet");
Expand Down

1 comment on commit 651e547

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.