hotspot/src/share/vm/runtime/vframe.hpp
changeset 38213 2f32787e31b1
parent 38133 78b95467b9f1
child 43980 792a70d867f4
--- a/hotspot/src/share/vm/runtime/vframe.hpp	Thu May 05 08:51:27 2016 -0700
+++ b/hotspot/src/share/vm/runtime/vframe.hpp	Fri May 06 22:45:32 2016 -0700
@@ -317,14 +317,6 @@
   intptr_t* frame_id() const { return _frame.id(); }
   address frame_pc() const { return _frame.pc(); }
 
-  javaVFrame* java_frame() {
-    vframe* vf = vframe::new_vframe(&_frame, &_reg_map, _thread);
-    if (vf->is_java_frame()) {
-      return (javaVFrame*)vf;
-    }
-    return NULL;
-  }
-
   CodeBlob*          cb()         const { return _frame.cb();  }
   CompiledMethod*   nm()         const {
       assert( cb() != NULL && cb()->is_compiled(), "usage");