mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Signature of removeElementAt() was not correct, fixes exception in SWT
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user