mirror of
https://github.com/corda/corda.git
synced 2025-04-04 18:09:17 +00:00
Added ArrayList.set
This commit is contained in:
parent
7d67d09b1a
commit
0f926f8f0b
@ -100,6 +100,15 @@ public class ArrayList<T> implements List<T> {
|
||||
}
|
||||
}
|
||||
|
||||
public T set(int index, T element) {
|
||||
if (index >= size) {
|
||||
resize(index+1);
|
||||
}
|
||||
Object oldValue = array[index];
|
||||
array[index] = element;
|
||||
return (T) oldValue;
|
||||
}
|
||||
|
||||
public T remove(int index) {
|
||||
T v = get(index);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user