(C endpoint)
| 285 | } |
| 286 | |
| 287 | static <C extends Comparable> Cut<C> belowValue(C endpoint) { |
| 288 | return new BelowValue<C>(endpoint); |
| 289 | } |
| 290 | |
| 291 | private static final class BelowValue<C extends Comparable> extends Cut<C> { |
| 292 | BelowValue(C endpoint) { |
no outgoing calls
no test coverage detected