mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
7036482: clear argument is redundant and unused in cardtable methods
Removed the unused clear argument to various cardtbale methods and unused mod_oop_in_space_iterate method. Unrelated to synopsis, added a pair of clarifying parens in AllocationStats constructor. Reviewed-by: brutisso, jcoomes
This commit is contained in:
parent
20a3437a74
commit
91657bd273
6 changed files with 22 additions and 80 deletions
|
@ -76,7 +76,7 @@ class AllocationStats VALUE_OBJ_CLASS_SPEC {
|
|||
_beforeSweep = 0;
|
||||
_coalBirths = 0;
|
||||
_coalDeaths = 0;
|
||||
_splitBirths = split_birth? 1 : 0;
|
||||
_splitBirths = (split_birth ? 1 : 0);
|
||||
_splitDeaths = 0;
|
||||
_returnedBytes = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue