Skip to content

Commit

Permalink
8327126: Parallel: Remove unused ParMarkBitMapClosure::_initial_words…
Browse files Browse the repository at this point in the history
…_remaining

Reviewed-by: tschatzl
  • Loading branch information
albertnetymk committed Mar 1, 2024
1 parent 012411a commit acc0a74
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/hotspot/share/gc/parallel/psParallelCompact.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,6 @@ class ParMarkBitMapClosure: public StackObj {
private:
ParMarkBitMap* const _bitmap;
ParCompactionManager* const _compaction_manager;
DEBUG_ONLY(const size_t _initial_words_remaining;) // Useful in debugger.
size_t _words_remaining; // Words left to copy.

protected:
Expand All @@ -756,9 +755,6 @@ ParMarkBitMapClosure::ParMarkBitMapClosure(ParMarkBitMap* bitmap,
ParCompactionManager* cm,
size_t words):
_bitmap(bitmap), _compaction_manager(cm)
#ifdef ASSERT
, _initial_words_remaining(words)
#endif
{
_words_remaining = words;
_source = nullptr;
Expand Down

1 comment on commit acc0a74

@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.