(C endpoint)
| 373 | |
| 374 | |
| 375 | static <C extends Comparable> Cut<C> aboveValue(C endpoint) { |
| 376 | return new AboveValue<C>(endpoint); |
| 377 | } |
| 378 | |
| 379 | private static final class AboveValue<C extends Comparable> extends Cut<C> { |
| 380 | AboveValue(C endpoint) { |
no outgoing calls
no test coverage detected