(int index, Character element)
| 534 | } |
| 535 | |
| 536 | @Override |
| 537 | public Character set(int index, Character element) { |
| 538 | checkElementIndex(index, size()); |
| 539 | char oldValue = array[start + index]; |
| 540 | // checkNotNull for GWT (do not optimize) |
| 541 | array[start + index] = checkNotNull(element); |
| 542 | return oldValue; |
| 543 | } |
| 544 | |
| 545 | @Override |
| 546 | public List<Character> subList(int fromIndex, int toIndex) { |
nothing calls this directly
no test coverage detected