Latest instructions on getting and patching
Rémi Forax
forax at univ-mlv.fr
Sat Apr 11 07:33:41 PDT 2009
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
More information about the mlvm-dev
mailing list