mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8026849: Fix typos in the GC code, part 2
Fixed typos in assert messages, flag descriptions and verbose messages Reviewed-by: stefank, tschatzl
This commit is contained in:
parent
5d460f1f3d
commit
40ba2bba2c
16 changed files with 27 additions and 31 deletions
|
@ -1352,7 +1352,7 @@ void BinaryTreeDictionary<Chunk_t, FreeList_t>::print_free_lists(outputStream* s
|
|||
template <class Chunk_t, template <class> class FreeList_t>
|
||||
void BinaryTreeDictionary<Chunk_t, FreeList_t>::verify_tree() const {
|
||||
guarantee(root() == NULL || total_free_blocks() == 0 ||
|
||||
total_size() != 0, "_total_size should't be 0?");
|
||||
total_size() != 0, "_total_size shouldn't be 0?");
|
||||
guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent");
|
||||
verify_tree_helper(root());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue