bb34cba00f
binary compatibilty! Whee! I genericized these when I was first using generics, before I understood the "PECS" rule. It seems to me that these could be <T> Collection<T> addAll (Collection<T> col, Iterator<? extends T> iter); (rather than) <T> Collection<? super T> addAll (Collection<? super T> col, Iterator<T> iter); ..but in fact there is already a java.util.Collections.addAll() that takes an array and specifies the type as that of the producer. So I followed that. I'm not sure which would be more correct. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2646 6335cc39-0255-0410-8fd6-9bcaacd3b74c