mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-15 13:49:42 +02:00
8365316: Remove unnecessary default arg value in gcVMOperations
Reviewed-by: tschatzl
This commit is contained in:
parent
95b7a8b3e3
commit
19a76a45e9
1 changed files with 4 additions and 4 deletions
|
@ -117,8 +117,8 @@ class VM_GC_Operation: public VM_Heap_Sync_Operation {
|
|||
public:
|
||||
VM_GC_Operation(uint gc_count_before,
|
||||
GCCause::Cause _cause,
|
||||
uint full_gc_count_before = 0,
|
||||
bool full = false) : VM_Heap_Sync_Operation() {
|
||||
uint full_gc_count_before,
|
||||
bool full) : VM_Heap_Sync_Operation() {
|
||||
_full = full;
|
||||
_prologue_succeeded = false;
|
||||
_gc_count_before = gc_count_before;
|
||||
|
@ -147,8 +147,8 @@ class VM_GC_Service_Operation : public VM_GC_Operation {
|
|||
public:
|
||||
VM_GC_Service_Operation(uint gc_count_before,
|
||||
GCCause::Cause _cause,
|
||||
uint full_gc_count_before = 0,
|
||||
bool full = false) :
|
||||
uint full_gc_count_before,
|
||||
bool full) :
|
||||
VM_GC_Operation(gc_count_before, _cause, full_gc_count_before, full) {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue