src/hotspot/share/gc/g1/g1CollectedHeap.cpp
changeset 49327 8f63fb7788bb
parent 49323 565336327354
child 49333 489f1dd40582
--- a/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Fri Mar 02 11:43:19 2018 +0100
+++ b/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Fri Mar 02 14:47:52 2018 +0100
@@ -3006,7 +3006,7 @@
         pre_evacuate_collection_set();
 
         // Actually do the work...
-        evacuate_collection_set(evacuation_info, &per_thread_states);
+        evacuate_collection_set(&per_thread_states);
 
         post_evacuate_collection_set(evacuation_info, &per_thread_states);
 
@@ -4253,7 +4253,7 @@
   }
 }
 
-void G1CollectedHeap::evacuate_collection_set(EvacuationInfo& evacuation_info, G1ParScanThreadStateSet* per_thread_states) {
+void G1CollectedHeap::evacuate_collection_set(G1ParScanThreadStateSet* per_thread_states) {
   // Should G1EvacuationFailureALot be in effect for this GC?
   NOT_PRODUCT(set_evacuation_failure_alot_for_current_gc();)