hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp
changeset 12379 2cf45b79ce3a
parent 11756 28b6fe22e43d
child 12381 1438e0fbfa27
--- a/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp	Fri Apr 13 01:59:38 2012 +0200
+++ b/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp	Mon Apr 16 08:57:18 2012 +0200
@@ -779,16 +779,15 @@
   G1OffsetTableContigSpace::print_on(st);
 }
 
-void HeapRegion::verify(bool allow_dirty) const {
+void HeapRegion::verify() const {
   bool dummy = false;
-  verify(allow_dirty, VerifyOption_G1UsePrevMarking, /* failures */ &dummy);
+  verify(VerifyOption_G1UsePrevMarking, /* failures */ &dummy);
 }
 
 // This really ought to be commoned up into OffsetTableContigSpace somehow.
 // We would need a mechanism to make that code skip dead objects.
 
-void HeapRegion::verify(bool allow_dirty,
-                        VerifyOption vo,
+void HeapRegion::verify(VerifyOption vo,
                         bool* failures) const {
   G1CollectedHeap* g1 = G1CollectedHeap::heap();
   *failures = false;