mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add missing classpath methods
This commit is contained in:
@ -42,6 +42,10 @@ public class Vector<T> implements List<T> {
|
||||
return list.get(index);
|
||||
}
|
||||
|
||||
public synchronized T set(int index, T value) {
|
||||
return list.set(index, value);
|
||||
}
|
||||
|
||||
public T elementAt(int index) {
|
||||
return get(index);
|
||||
}
|
||||
|
Reference in New Issue
Block a user