(int i)
| 293 | /* lazily generate the iterators on each input only as needed */ |
| 294 | new AbstractIndexedListIterator<Iterator<? extends T>>(inputs.length) { |
| 295 | @Override |
| 296 | public Iterator<? extends T> get(int i) { |
| 297 | return inputs[i].iterator(); |
| 298 | } |
| 299 | }); |
| 300 | } |
| 301 | }; |
nothing calls this directly
no test coverage detected