Like a noob, I missed some things... broke the compilation.

This commit is contained in:
mweaver
2009-04-22 15:24:26 -06:00
parent f68f1e5888
commit 6b89ecd0ee
18 changed files with 34 additions and 30 deletions

View File

@ -29,7 +29,7 @@ public class Vector<T> implements List<T> {
return list.size();
}
public synchronized boolean contains(T element) {
public synchronized boolean contains(Object element) {
return list.contains(element);
}
@ -85,7 +85,7 @@ public class Vector<T> implements List<T> {
remove(index);
}
public synchronized boolean remove(T element) {
public synchronized boolean remove(Object element) {
return list.remove(element);
}