< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/g1/HeapRegion.java

Print this page
rev 52491 : Changes in jdk.hotspot.agent

@@ -120,10 +120,14 @@
 
     public boolean isOld() {
         return type.isOld();
     }
 
+    public boolean isPreMatureOld() {
+        return type.isPreMatureOld();
+    }
+
     public static long getPointerSize() {
         return pointerSize;
     }
 
     public void printOn(PrintStream tty) {
< prev index next >