hotspot/src/share/vm/oops/arrayKlass.cpp
changeset 18439 725ce18186b3
parent 17826 9ad5cd464a75
child 18687 5a0543c157c9
equal deleted inserted replaced
18438:9ea6bbfe0b83 18439:725ce18186b3
   219 }
   219 }
   220 
   220 
   221 
   221 
   222 // Verification
   222 // Verification
   223 
   223 
   224 void ArrayKlass::verify_on(outputStream* st) {
   224 void ArrayKlass::verify_on(outputStream* st, bool check_dictionary) {
   225   Klass::verify_on(st);
   225   Klass::verify_on(st, check_dictionary);
   226 
   226 
   227   if (component_mirror() != NULL) {
   227   if (component_mirror() != NULL) {
   228     guarantee(component_mirror()->klass() != NULL, "should have a class");
   228     guarantee(component_mirror()->klass() != NULL, "should have a class");
   229   }
   229   }
   230 }
   230 }