< prev index next >

src/hotspot/share/gc/shenandoah/shenandoahArguments.cpp

Print this page
@@ -22,11 +22,10 @@
   * or visit www.oracle.com if you need additional information or have any
   * questions.
   *
   */
  
- #include "gc/shared/fullGCForwarding.hpp"
  #include "gc/shared/gcArguments.hpp"
  #include "gc/shared/tlab_globals.hpp"
  #include "gc/shared/workerPolicy.hpp"
  #include "gc/shenandoah/shenandoahArguments.hpp"
  #include "gc/shenandoah/shenandoahCardTable.hpp"

@@ -210,12 +209,10 @@
        && strcmp(ShenandoahGCHeuristics, "adaptive") != 0) {
      log_warning(gc)("Ignoring -XX:ShenandoahGCHeuristics input: %s, because generational shenandoah only"
        " supports adaptive heuristics", ShenandoahGCHeuristics);
      FLAG_SET_ERGO(ShenandoahGCHeuristics, "adaptive");
    }
- 
-   FullGCForwarding::initialize_flags(MaxHeapSize);
  }
  
  size_t ShenandoahArguments::conservative_max_heap_alignment() {
    static_assert(is_power_of_2(ShenandoahHeapRegion::MAX_REGION_SIZE), "Max region size must be a power of 2.");
    size_t align = ShenandoahHeapRegion::MAX_REGION_SIZE;
< prev index next >