OpenJDK / valhalla / valhalla10-old / hotspot
changeset 7434:403aceebe7ac
8059492: Wrong spelling in assert: "Not initialied properly?"
Summary: Fixed typo in metaspace assert message
Reviewed-by: mgerdin
Contributed-by: aharlap <alexander.harlap.@oracle.com>
author | aharlap |
---|---|
date | Thu, 20 Nov 2014 10:03:22 -0500 |
parents | 6464714dd742 |
children | a5040fddd180 c43f0d5cc9ec |
files | src/share/vm/memory/metaspace.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/vm/memory/metaspace.cpp Wed Nov 19 17:43:19 2014 +0300 +++ b/src/share/vm/memory/metaspace.cpp Thu Nov 20 10:03:22 2014 -0500 @@ -1412,7 +1412,7 @@ size_t MetaspaceGC::capacity_until_GC() { size_t value = (size_t)OrderAccess::load_ptr_acquire(&_capacity_until_GC); - assert(value >= MetaspaceSize, "Not initialied properly?"); + assert(value >= MetaspaceSize, "Not initialized properly?"); return value; }