mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
implement ArrayList.listIterator()
This commit is contained in:
parent
d5f4811b43
commit
93597a4d1d
@ -176,6 +176,10 @@ public class ArrayList<T> implements List<T> {
|
||||
return new Collections.ArrayListIterator(this, index);
|
||||
}
|
||||
|
||||
public ListIterator<T> listIterator() {
|
||||
return listIterator(0);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return Collections.toString(this);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user