Files
samskivert/src/java
ray.j.greenwell bb34cba00f Wow, the signatures on these were way wrong. Let's fix them and break
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
2009-11-19 22:17:12 +00:00
..