(int index)
| 551 | } |
| 552 | |
| 553 | @Override |
| 554 | public Integer get(int index) { |
| 555 | checkElementIndex(index, size()); |
| 556 | return array[start + index]; |
| 557 | } |
| 558 | |
| 559 | @Override |
| 560 | public boolean contains(Object target) { |
nothing calls this directly
no test coverage detected