(
Comparable left, Comparable right)
| 76 | |
| 77 | private static final ComparisonChain ACTIVE = new ComparisonChain() { |
| 78 | @SuppressWarnings("unchecked") |
| 79 | @Override |
| 80 | public ComparisonChain compare( |
| 81 | Comparable left, Comparable right) { |
| 82 | return classify(left.compareTo(right)); |
| 83 | } |
| 84 | |
| 85 | @Override |
| 86 | public <T> ComparisonChain compare(@Nullable T left, @Nullable T right, Comparator<T> comparator) { |
nothing calls this directly
no test coverage detected