Removes all elements from this list, leaving it empty. @throws UnsupportedOperationException if removing from this list is not supported. @see List#isEmpty @see List#size
()
| 461 | * @see List#size |
| 462 | */ |
| 463 | @Override |
| 464 | public void clear() { |
| 465 | removeRange(0, size()); |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * Compares the specified object to this list and return true if they are |
nothing calls this directly
no test coverage detected