mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add java.util.Collection.toArray()
This commit is contained in:
@ -77,10 +77,6 @@ public class Vector<T> extends AbstractList<T> {
|
||||
return list.isEmpty();
|
||||
}
|
||||
|
||||
public synchronized <S> S[] toArray(S[] a) {
|
||||
return list.toArray(a);
|
||||
}
|
||||
|
||||
public void removeElementAt(int index) {
|
||||
remove(index);
|
||||
}
|
||||
|
Reference in New Issue
Block a user