John Rose a écrit :
...
> Also, the JSR EG is not that far away from agreeing on the APIs. It's  
> just that there are lots small details to worry about.
>   
Last week, I've noted that one of the factory method in MethodType
is not correctly generified:

MethodType.make(Class<?> rtype, List<Class<?>> ptypes)
should be
MethodType.make(Class<?> rtype, List<? extends Class<?>> ptypes)

Even if java.lang.Class is final, final is not used by the Java type system.

> -- John
>   
Rémi
_______________________________________________
mlvm-dev mailing list
mlvm-dev@openjdk.java.net
http://mail.openjdk.java.net/mailman/listinfo/mlvm-dev

Reply via email to