Skip to content

Commit 5d3d40d

Browse files
committedFeb 27, 2024
8326659: Serial: Remove redundant TenuredSpace::print_on
Reviewed-by: tschatzl
1 parent 7583419 commit 5d3d40d

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed
 

‎src/hotspot/share/gc/shared/space.cpp

-8
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,6 @@ void ContiguousSpace::print_on(outputStream* st) const {
115115
p2i(bottom()), p2i(top()), p2i(end()));
116116
}
117117

118-
#if INCLUDE_SERIALGC
119-
void TenuredSpace::print_on(outputStream* st) const {
120-
print_short_on(st);
121-
st->print_cr(" [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ")",
122-
p2i(bottom()), p2i(top()), p2i(end()));
123-
}
124-
#endif
125-
126118
void ContiguousSpace::verify() const {
127119
HeapWord* p = bottom();
128120
HeapWord* t = top();

‎src/hotspot/share/gc/shared/space.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ class TenuredSpace: public ContiguousSpace {
243243
inline HeapWord* par_allocate(size_t word_size) override;
244244

245245
inline void update_for_block(HeapWord* start, HeapWord* end);
246-
247-
void print_on(outputStream* st) const override;
248246
};
249247
#endif //INCLUDE_SERIALGC
250248

0 commit comments

Comments
 (0)
Please sign in to comment.