(int index)
| 286 | } |
| 287 | |
| 288 | @Override |
| 289 | public Byte get(int index) { |
| 290 | checkElementIndex(index, size()); |
| 291 | return array[start + index]; |
| 292 | } |
| 293 | |
| 294 | @Override |
| 295 | public boolean contains(Object target) { |
nothing calls this directly
no test coverage detected