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