Guaranteed to throw an exception and leave the list unmodified. @throws UnsupportedOperationException always @deprecated Unsupported operation.
(@Nullable Comparator<? super E> c)
| 589 | * @deprecated Unsupported operation. |
| 590 | */ |
| 591 | @Deprecated |
| 592 | @Override |
| 593 | @DoNotCall("Always throws UnsupportedOperationException") |
| 594 | public final void sort(@Nullable Comparator<? super E> c) { |
| 595 | throw new UnsupportedOperationException(); |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Returns this list instance. |
no outgoing calls