(int index, Float element)
| 518 | } |
| 519 | |
| 520 | @Override |
| 521 | public Float set(int index, Float element) { |
| 522 | checkElementIndex(index, size()); |
| 523 | float oldValue = array[start + index]; |
| 524 | // checkNotNull for GWT (do not optimize) |
| 525 | array[start + index] = checkNotNull(element); |
| 526 | return oldValue; |
| 527 | } |
| 528 | |
| 529 | @Override |
| 530 | public List<Float> subList(int fromIndex, int toIndex) { |
nothing calls this directly
no test coverage detected