fix whitespace

This commit is contained in:
Kelvin Nilsen 2025-06-12 20:08:28 +00:00
parent 8ec6ea066d
commit aea2b92557
2 changed files with 1 additions and 2 deletions

View File

@ -779,7 +779,6 @@ void ShenandoahRegionPartitions::assert_bounds(bool old_trash_not_in_bounds) {
// Bottom line: if _old_trash_not_in_bounds, the ranges of old regions detected by examination of all region states may
// be larger than the spans reported by leftmosts(OldColector) and rightmosts(OldCollector) and by the spans represented
// by _leftmosts_empty[OldCollector] and _rightmosts_empty[OldCollector]
//
// If OldCollector partition is empty and !old_trash_not_in_bounds:
// leftmosts will both equal max, rightmosts will both equal zero.

View File

@ -290,7 +290,7 @@ HeapWord* ShenandoahCardCluster::block_start(const size_t card_index) const {
if (p + obj->size() <= left) {
const CardValue* const wtbm = _rs->card_table()->write_byte_map();
const CardValue* const rtbm = _rs->card_table()->read_byte_map();
log_info(gc)("Anticipating assert failure, card[%zu] is %s in read table, %s in write table", cur_index,
log_info(gc)("Anticipating assert failure, card[%zu] is %s in read table, %s in write table", cur_index,
(rtbm[cur_index] ==CardTable::dirty_card_val())? "dirty": "clean",
(wtbm[cur_index] ==CardTable::dirty_card_val())? "dirty": "clean");
}