--- old/src/share/vm/memory/oopFactory.cpp 2015-10-30 18:24:03.217891022 -0400 +++ new/src/share/vm/memory/oopFactory.cpp 2015-10-30 18:24:02.924478460 -0400 @@ -58,12 +58,12 @@ } // Create a Java array that points to metadata. -// As far as Java code is concerned, a metaData array is either an array of -// int or long depending on pointer size. Only a few things use this, like -// stack trace elements in Throwable. They cast Method* into this type. +// As far as Java code is concerned, a metadata array is either an array of +// int or long depending on pointer size. Only stack trace elements in Throwable use this. +// They cast Method* into this type. // Note:can't point to symbols because there's no way to unreference count // them when this object goes away. -typeArrayOop oopFactory::new_metaDataArray(int length, TRAPS) { +typeArrayOop oopFactory::new_metadataArray(int length, TRAPS) { BasicType type = LP64_ONLY(T_LONG) NOT_LP64(T_INT); Klass* type_asKlassOop = Universe::typeArrayKlassObj(type); TypeArrayKlass* type_asArrayKlass = TypeArrayKlass::cast(type_asKlassOop);