(int index, Byte element)
| 323 | } |
| 324 | |
| 325 | @Override |
| 326 | public Byte set(int index, Byte element) { |
| 327 | checkElementIndex(index, size()); |
| 328 | |
| 329 | byte oldValue = array[start + index]; |
| 330 | // checkNotNull for GWT (do not optimize) |
| 331 | array[start + index] = checkNotNull(element); |
| 332 | return oldValue; |
| 333 | } |
| 334 | |
| 335 | @Override |
| 336 | public List<Byte> subList(int fromIndex, int toIndex) { |
nothing calls this directly
no test coverage detected