(int index, Long element)
| 673 | } |
| 674 | |
| 675 | @Override |
| 676 | public Long set(int index, Long element) { |
| 677 | checkElementIndex(index, size()); |
| 678 | long oldValue = array[start + index]; |
| 679 | // checkNotNull for GWT (do not optimize) |
| 680 | array[start + index] = checkNotNull(element); |
| 681 | return oldValue; |
| 682 | } |
| 683 | |
| 684 | @Override |
| 685 | public List<Long> subList(int fromIndex, int toIndex) { |
nothing calls this directly
no test coverage detected