()
| 210 | */ |
| 211 | |
| 212 | @SuppressWarnings("unchecked") |
| 213 | static <C extends Comparable> Cut<C> aboveAll() { |
| 214 | return (Cut<C>) AboveAll.INSTANCE; |
| 215 | } |
| 216 | |
| 217 | private static final class AboveAll extends Cut<Comparable<?>> { |
| 218 | private static final AboveAll INSTANCE = new AboveAll(); |
no outgoing calls
no test coverage detected