(int location, E object)
| 34 | } |
| 35 | |
| 36 | @Override |
| 37 | public void add(int location, E object) { |
| 38 | listIterator(location).add(object); |
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public boolean addAll(int location, Collection<? extends E> collection) { |
nothing calls this directly
no test coverage detected