hotspot/src/share/vm/gc/g1/heapRegion.hpp
changeset 38183 cb68e4923223
parent 38154 4c30333c304e
child 39698 4016de4e596b
--- a/hotspot/src/share/vm/gc/g1/heapRegion.hpp	Mon May 02 19:38:15 2016 -0400
+++ b/hotspot/src/share/vm/gc/g1/heapRegion.hpp	Tue May 03 12:33:10 2016 +0200
@@ -267,9 +267,6 @@
   //   The collection set.
   HeapRegion* _next_in_special_set;
 
-  // next region in the young "generation" region set
-  HeapRegion* _next_young_region;
-
   // Fields used by the HeapRegionSetBase class and subclasses.
   HeapRegion* _next;
   HeapRegion* _prev;
@@ -523,10 +520,6 @@
   // to provide a dummy version of it.
 #endif // ASSERT
 
-  HeapRegion* get_next_young_region() { return _next_young_region; }
-  void set_next_young_region(HeapRegion* hr) {
-    _next_young_region = hr;
-  }
 
   // Reset HR stuff to default values.
   void hr_clear(bool par, bool clear_space, bool locked = false);