(C endpoint)
| 368 | } |
| 369 | |
| 370 | static <C extends Comparable> Cut<C> aboveValue(C endpoint) { |
| 371 | return new AboveValue<C>(endpoint); |
| 372 | } |
| 373 | |
| 374 | private static final class AboveValue<C extends Comparable> extends Cut<C> { |
| 375 | AboveValue(C endpoint) { |
no outgoing calls
no test coverage detected