Re: [lang] ClassUtils.toClass(Object[] array)

2010-02-02 Thread Henri Yandell
null -> null makes sense. +1. On Tue, Feb 2, 2010 at 12:53 PM, Matt Benson wrote: > Currently it appears this method would throw a NPE if any element of array > is null, without documenting this fact.  Our options would seem to be: > > - document the NPE > - convert a null object to Object.class

[lang] ClassUtils.toClass(Object[] array)

2010-02-02 Thread Matt Benson
Currently it appears this method would throw a NPE if any element of array is null, without documenting this fact. Our options would seem to be: - document the NPE - convert a null object to Object.class - convert a null object to a null class My inclination would be the third option, from