(int index)
| 1160 | if (list instanceof RandomAccess) { |
| 1161 | wrapper = new RandomAccessListWrapper<E>(list) { |
| 1162 | @Override |
| 1163 | public ListIterator<E> listIterator(int index) { |
| 1164 | return backingList.listIterator(index); |
| 1165 | } |
| 1166 | |
| 1167 | private static final long serialVersionUID = 0; |
| 1168 | }; |
no outgoing calls
no test coverage detected