Skip to content

Commit 553edc4

Browse files
Remove incorrect is_gc_operation call after rebase
1 parent 3095e70 commit 553edc4

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/hotspot/share/gc/shared/gcVMOperations.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ class VM_Heap_Sync_Operation : public VM_Operation {
9696
virtual bool doit_prologue();
9797
// Releases the Heap_lock.
9898
virtual void doit_epilogue();
99-
100-
bool is_gc_operation() const { return true; }
10199
};
102100

103101
class VM_Verify : public VM_Heap_Sync_Operation {

src/hotspot/share/runtime/vmOperation.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ class VM_Operation : public StackObj {
172172
// or concurrently with Java threads running.
173173
virtual bool evaluate_at_safepoint() const { return true; }
174174

175-
virtual bool is_gc_operation() const { return false; }
176-
177175
// Debugging
178176
virtual void print_on_error(outputStream* st) const;
179177
virtual const char* name() const { return _names[type()]; }

0 commit comments

Comments
 (0)