mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +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);
|
return list.toArray(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
public T removeElementAt(int index) {
|
public void removeElementAt(int index) {
|
||||||
return remove(index);
|
remove(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized boolean remove(T element) {
|
public synchronized boolean remove(T element) {
|
||||||
|
Reference in New Issue
Block a user