Re: [lang] ArrayUtils issues

2009-11-16 Thread Henri Yandell
On Mon, Nov 16, 2009 at 1:10 PM, Jörg Schaible wrote: > Hi Hen, > > Henri Yandell wrote at Samstag, 14. November 2009 10:32: > >> Wrapping 5 ArrayUtils issues up in one email to see if we can make >> decisions on them. >> >> LANG-470      Add containsAll(Object[], Object[]) methods to ArrayUtils >

Re: [lang] ArrayUtils issues

2009-11-16 Thread Jörg Schaible
Hi Hen, Henri Yandell wrote at Samstag, 14. November 2009 10:32: > Wrapping 5 ArrayUtils issues up in one email to see if we can make > decisions on them. > > LANG-470      Add containsAll(Object[], Object[]) methods to ArrayUtils > LANG-531      Add defaultIfEmpty or nullIfEmpty to ArrayUtils >

Re: [lang] ArrayUtils issues

2009-11-14 Thread sebb
On 14/11/2009, Hasan Diwan wrote: > 2009/11/14 Henri Yandell : > > > LANG-470Add containsAll(Object[], Object[]) methods to ArrayUtils > > > public static containsAll(Object[] first, Object[] second) { > > for (Object o : first) { > if (ArrayUtils.contains(second, o) == false) return

Re: [lang] ArrayUtils issues

2009-11-14 Thread Hasan Diwan
2009/11/14 Henri Yandell : > LANG-470        Add containsAll(Object[], Object[]) methods to ArrayUtils public static containsAll(Object[] first, Object[] second) { for (Object o : first) { if (ArrayUtils.contains(second, o) == false) return false; } return ArrayUtils.getLength(first) ==

[lang] ArrayUtils issues

2009-11-14 Thread Henri Yandell
Wrapping 5 ArrayUtils issues up in one email to see if we can make decisions on them. LANG-470Add containsAll(Object[], Object[]) methods to ArrayUtils LANG-531Add defaultIfEmpty or nullIfEmpty to ArrayUtils LANG-536Add isSorted() to ArrayUtils LANG-537Add ArrayUtil