src/share/classes/java/lang/invoke/BoundMethodHandle.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 7088481 Cdiff src/share/classes/java/lang/invoke/BoundMethodHandle.java

src/share/classes/java/lang/invoke/BoundMethodHandle.java

Print this page

        

*** 34,44 **** * on a predetermined argument. The JVM dispatches to the correct method * when the handle is created, not when it is invoked. * @author jrose */ class BoundMethodHandle extends MethodHandle { - //MethodHandle vmtarget; // next BMH or final DMH or methodOop private final Object argument; // argument to insert private final int vmargslot; // position at which it is inserted // Constructors in this class *must* be package scoped or private. --- 34,43 ----
*** 75,85 **** this.vmargslot = type.parameterSlotDepth(argnum); initTarget(mh, argnum); } private void initTarget(MethodHandle mh, int argnum) { - //this.vmtarget = mh; // maybe updated by JVM MethodHandleNatives.init(this, mh, argnum); } /** For the AdapterMethodHandle subclass. */ --- 74,83 ----
src/share/classes/java/lang/invoke/BoundMethodHandle.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File