(C endpoint)
| 388 | } |
| 389 | |
| 390 | static <C extends Comparable> Cut<C> aboveValue(C endpoint) { |
| 391 | return new AboveValue<>(endpoint); |
| 392 | } |
| 393 | |
| 394 | private static final class AboveValue<C extends Comparable> extends Cut<C> { |
| 395 | AboveValue(C endpoint) { |
no outgoing calls
no test coverage detected