Fix mac build

Remove a compiler error by removing an unnecessary method
This commit is contained in:
Eric Scharff 2009-06-19 13:43:57 -06:00
parent 7ed14948b9
commit c3c06e4e0e

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;