+1

Minor comment:

File: MethodHandleImpl.java

If "checks" can be inside the assert. + if (access == ArrayAccess.SET)
assert(mh.type().parameterType(2) == Object.class);
+ if (access == ArrayAccess.GET) {
+ assert(mh.type().returnType() == Object.class);
+ assert(correctType.parameterType(0).getComponentType() ==
correctType.returnType());
+ } -Sundar


On 5/18/2016 1:22 PM, Michael Haupt wrote:
> Dear all,
>
> please review this change.
> RFE: https://bugs.openjdk.java.net/browse/JDK-8156915
> Webrev: http://cr.openjdk.java.net/~mhaupt/8156915/webrev.00/
>
> Thanks,
>
> Michael
>

Reply via email to