review request 7172551

Ulf Zibis Ulf.Zibis at gmx.de
Fri Jun 8 00:36:47 UTC 2012


Am 08.06.2012 00:03, schrieb Joe Darcy:
> I would have written this as
>
>     ClassLoader cl = (cc != null) ? cc.getClassLoader() : null;

Alternative:
        return (cc != null) ? cc.getClassLoader() : null;

-Ulf




More information about the core-libs-dev mailing list