mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Merge branch 'master' of dice:git/vm
This commit is contained in:
commit
0a5de853d3
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user