Skip to content

Commit

Permalink
Merge pull request #5141 from DanHeidinga/djh/lookuptable
Browse files Browse the repository at this point in the history
Remove unused native and fix tabs vs spaces
  • Loading branch information
gacholio authored Mar 18, 2019
2 parents abed061 + 70e57ae commit 9be1d97
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions jcl/src/java.base/share/classes/java/lang/invoke/MethodHandle.java
Original file line number Diff line number Diff line change
Expand Up @@ -349,18 +349,11 @@ int getModifiers() throws InternalError {
*/
public final native @PolymorphicSignature Object invoke(Object... args) throws Throwable, WrongMethodTypeException, ClassCastException;

/*
* Lookup all the VMDispatchTargets and store them into 'targets' array.
* 'targets' must be large enough to hold all the dispatch targets.
*
*/
private static native boolean lookupVMDispatchTargets(long[] targets);

/**
* The MethodType of the MethodHandle. Invocation must match this MethodType.
*
* The MethodType of the MethodHandle. Invocation must match this MethodType.
*
* @return the MethodType of the MethodHandle.
*/
*/
public MethodType type() {
return type;
}
Expand Down

0 comments on commit 9be1d97

Please sign in to comment.