()
| 204 | * type C, so casting the type parameter is safe. |
| 205 | */ |
| 206 | @SuppressWarnings("unchecked") |
| 207 | static <C extends Comparable> Cut<C> aboveAll() { |
| 208 | return (Cut<C>) AboveAll.INSTANCE; |
| 209 | } |
| 210 | |
| 211 | private static final class AboveAll extends Cut<Comparable<?>> { |
| 212 | private static final AboveAll INSTANCE = new AboveAll(); |
no outgoing calls
no test coverage detected