(int index)
| 330 | } |
| 331 | |
| 332 | @Override |
| 333 | public E get(int index) { |
| 334 | // check explicitly so the IOOBE will have the right message |
| 335 | checkElementIndex(index, size()); |
| 336 | return (index == 0) ? first : rest[index - 1]; |
| 337 | } |
| 338 | |
| 339 | private static final long serialVersionUID = 0; |
| 340 | } |
nothing calls this directly
no test coverage detected