< prev index next >

src/hotspot/share/gc/g1/g1Allocator.inline.hpp

Print this page
rev 50037 : 8202745: Remove hyphens from "out-of-bounds".

@@ -62,11 +62,11 @@
   return mutator_alloc_region()->attempt_allocation_force(word_size);
 }
 
 inline PLAB* G1PLABAllocator::alloc_buffer(InCSetState dest) {
   assert(dest.is_valid(),
-         "Allocation buffer index out-of-bounds: " CSETSTATE_FORMAT, dest.value());
+         "Allocation buffer index out of bounds: " CSETSTATE_FORMAT, dest.value());
   assert(_alloc_buffers[dest.value()] != NULL,
          "Allocation buffer is NULL: " CSETSTATE_FORMAT, dest.value());
   return _alloc_buffers[dest.value()];
 }
 
< prev index next >