(int start, int end)
| 327 | } |
| 328 | |
| 329 | @Override |
| 330 | protected void removeRange(int start, int end) { |
| 331 | if (start != end) { |
| 332 | if (modCount == fullList.modCount) { |
| 333 | fullList.removeRange(start + offset, end + offset); |
| 334 | size -= end - start; |
| 335 | modCount = fullList.modCount; |
| 336 | } else { |
| 337 | throw new ConcurrentModificationException(); |
| 338 | } |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | @Override |
| 343 | public E set(int location, E object) { |
nothing calls this directly
no test coverage detected