mirror of
https://github.com/corda/corda.git
synced 2025-01-22 04:18:31 +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);
|
||||
}
|
||||
|
||||
public T setElementAt(T value, int index) {
|
||||
return set(index, value);
|
||||
public void setElementAt(T value, int index) {
|
||||
set(index, value);
|
||||
}
|
||||
|
||||
public T elementAt(int index) {
|
||||
|
Loading…
Reference in New Issue
Block a user