()
| 636 | } |
| 637 | |
| 638 | public ListIterator<E> listIterator() { |
| 639 | synchronized (mutex) { |
| 640 | return list.listIterator(); |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | public ListIterator<E> listIterator(int location) { |
| 645 | synchronized (mutex) { |
nothing calls this directly
no test coverage detected