(Comparable left, Comparable right)
| 719 | } |
| 720 | |
| 721 | @SuppressWarnings("unchecked") // this method may throw CCE |
| 722 | static int compareOrThrow(Comparable left, Comparable right) { |
| 723 | return left.compareTo(right); |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Needed to serialize sorted collections of Ranges. |
no test coverage detected