diff src/share/vm/oops/methodData.cpp @ 18137:94faadc823ea

MethodData::initialize: remove unused argument
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 21 Oct 2014 10:28:43 +0200
parents 52b4284cb496
children 7848fc12602b
line wrap: on
line diff
--- a/src/share/vm/oops/methodData.cpp	Tue Oct 21 10:20:33 2014 +0200
+++ b/src/share/vm/oops/methodData.cpp	Tue Oct 21 10:28:43 2014 +0200
@@ -1157,8 +1157,7 @@
   initialize();
 }
 
-//TODO remove useless for_reprofile argument
-void MethodData::initialize(bool for_reprofile) {
+void MethodData::initialize() {
   No_Safepoint_Verifier no_safepoint;  // init function atomic wrt GC
   ResourceMark rm;
 
@@ -1737,4 +1736,4 @@
        data = next_data(data)) {
     data->clean_weak_method_links();
   }
-}
\ No newline at end of file
+}