Merge branch 'master' of oss.readytalk.com:/var/local/git/avian

This commit is contained in:
Joel Dice
2009-07-10 09:57:29 -06:00
10 changed files with 106 additions and 28 deletions

View File

@ -97,10 +97,6 @@ public class LinkedList<T> implements List<T> {
return find(element) != null;
}
public void addAll(Collection<T> c) {
for (T t: c) add(t);
}
public boolean add(T element) {
addLast(element);
return true;