Merge branch 'master' of dice:git/vm

This commit is contained in:
Joel Dice 2007-10-16 11:21:35 -06:00
commit 0a5de853d3

View File

@ -58,8 +58,8 @@ public class Vector<T> implements List<T> {
return list.toArray(a);
}
public T removeElementAt(int index) {
return remove(index);
public void removeElementAt(int index) {
remove(index);
}
public synchronized boolean remove(T element) {