Skip to content

Commit bb0906f

Browse files
author
duke
committedOct 12, 2023
Automatic merge of jdk:master into master
2 parents 3adbbd2 + 77dc891 commit bb0906f

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed
 

‎src/hotspot/share/gc/serial/generation.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,6 @@ void Generation::print_summary_info_on(outputStream* st) {
9494

9595
// Utility iterator classes
9696

97-
class GenerationIsInReservedClosure : public SpaceClosure {
98-
public:
99-
const void* _p;
100-
Space* sp;
101-
virtual void do_space(Space* s) {
102-
if (sp == nullptr) {
103-
if (s->is_in_reserved(_p)) sp = s;
104-
}
105-
}
106-
GenerationIsInReservedClosure(const void* p) : _p(p), sp(nullptr) {}
107-
};
108-
10997
class GenerationIsInClosure : public SpaceClosure {
11098
public:
11199
const void* _p;

0 commit comments

Comments
 (0)
Please sign in to comment.