(int index, char ch)
| 373 | } |
| 374 | |
| 375 | public void setCharAt(int index, char ch) { |
| 376 | if(index < 0 || index >= length) throw new IndexOutOfBoundsException(); |
| 377 | deleteCharAt(index); |
| 378 | insert(index, ch); |
| 379 | } |
| 380 | |
| 381 | public void ensureCapacity(int capacity) { |
| 382 | // ignore |
nothing calls this directly
no test coverage detected