Skip to content

Commit 5eb2c59

Browse files
committed
8330475: Remove unused default value for ModRefBarrierSet::write_ref_array_pre
Reviewed-by: gli, tschatzl
1 parent 003e86f commit 5eb2c59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ class ModRefBarrierSet: public BarrierSet {
6161

6262
// Below length is the # array elements being written
6363
virtual void write_ref_array_pre(oop* dst, size_t length,
64-
bool dest_uninitialized = false) {}
64+
bool dest_uninitialized) {}
6565
virtual void write_ref_array_pre(narrowOop* dst, size_t length,
66-
bool dest_uninitialized = false) {}
66+
bool dest_uninitialized) {}
6767
// Below count is the # array elements being written, starting
6868
// at the address "start", which may not necessarily be HeapWord-aligned
6969
inline void write_ref_array(HeapWord* start, size_t count);

0 commit comments

Comments
 (0)