src/share/vm/oops/methodData.hpp

Print this page

        

@@ -2336,14 +2336,10 @@
   // Convert a dp (data pointer) to a di (data index).
   int dp_to_di(address dp) const {
     return dp - ((address)_data);
   }
 
-  address di_to_dp(int di) {
-    return (address)data_layout_at(di);
-  }
-
   // bci to di/dp conversion.
   address bci_to_dp(int bci);
   int bci_to_di(int bci) {
     return dp_to_di(bci_to_dp(bci));
   }