(int index)
| 343 | } |
| 344 | |
| 345 | @Override |
| 346 | public E get(int index) { |
| 347 | // check explicitly so the IOOBE will have the right message |
| 348 | checkElementIndex(index, size()); |
| 349 | return (index == 0) ? first : rest[index - 1]; |
| 350 | } |
| 351 | |
| 352 | private static final long serialVersionUID = 0; |
| 353 | } |
nothing calls this directly
no test coverage detected