()
| 220 | * type C, so casting the type parameter is safe. |
| 221 | */ |
| 222 | @SuppressWarnings("unchecked") |
| 223 | static <C extends Comparable> Cut<C> aboveAll() { |
| 224 | return (Cut<C>) AboveAll.INSTANCE; |
| 225 | } |
| 226 | |
| 227 | private static final class AboveAll extends Cut<Comparable<?>> { |
| 228 | private static final AboveAll INSTANCE = new AboveAll(); |
no outgoing calls
no test coverage detected