On May 17, 2011, at 1:06 PM, Tom Rodriguez wrote:
> MethodTypeForm.java:
>
> - if (c != null) {
> + if (c == void.class)
> + c = null; // a Void parameter was unwrapped to void; ignore
> + if (c != null && c != void.class) {
>
> You don't need to both tests against void.class do you?
No, thanks. The first test is the one I want. The second (more obscure) was
my first draft. :-)
-- John
_______________________________________________
mlvm-dev mailing list
mlvm-dev@openjdk.java.net
http://mail.openjdk.java.net/mailman/listinfo/mlvm-dev