(int location)
| 50 | } |
| 51 | |
| 52 | @Override |
| 53 | public E get(int location) { |
| 54 | try { |
| 55 | return listIterator(location).next(); |
| 56 | } catch (NoSuchElementException e) { |
| 57 | throw new IndexOutOfBoundsException(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | @Override |
| 62 | public Iterator<E> iterator() { |
nothing calls this directly
no test coverage detected