mirror of
https://github.com/corda/corda.git
synced 2025-02-02 01:08:09 +00:00
Vector.setElementAt should return void
This commit is contained in:
parent
066714933c
commit
025cf59bb6
@ -61,8 +61,8 @@ public class Vector<T> implements List<T> {
|
|||||||
return list.set(index, value);
|
return list.set(index, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public T setElementAt(T value, int index) {
|
public void setElementAt(T value, int index) {
|
||||||
return set(index, value);
|
set(index, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public T elementAt(int index) {
|
public T elementAt(int index) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user