mirror of
https://github.com/corda/corda.git
synced 2025-06-15 13:48:14 +00:00
Small change to make these two structures implement RandomAccess (as they should)
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
|
||||
package java.util;
|
||||
|
||||
public class Vector<T> extends AbstractList<T> implements java.io.Serializable, Cloneable {
|
||||
public class Vector<T> extends AbstractList<T> implements java.io.Serializable, Cloneable, RandomAccess {
|
||||
private final ArrayList<T> list;
|
||||
|
||||
public Vector(int capacity) {
|
||||
|
Reference in New Issue
Block a user