Code review request: 7077672 jdk8_tl nightly fail in step-2 build on 8/10/11
Rémi Forax
forax at univ-mlv.fr
Thu Aug 11 20:15:48 UTC 2011
On 08/11/2011 09:07 PM, Alexandre Boulgakov wrote:
> Please review the attached patch to fix a build break.
>
> The fix changes new Class<>[] to new Class<?>[] in two places.
>
> Thanks,
> Sasha
Hi Sasha,
you can rewrite:
connectMethod = corbaStubClass.getMethod("connect",
new Class<>[] {org.omg.CORBA.ORB.class});
to
connectMethod = corbaStubClass.getMethod("connect",
org.omg.CORBA.ORB.class);
because getMethod is a varargs.
Anyways, the changes are ok for me without that.
Rémi
More information about the core-libs-dev
mailing list