Signature of removeElementAt() was not correct, fixes exception in SWT

This commit is contained in:
Eric Scharff 2007-10-15 14:06:06 -06:00
parent 5f6258045e
commit 91ffeb6aed

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) {