(C endpoint)
| 289 | |
| 290 | |
| 291 | static <C extends Comparable> Cut<C> belowValue(C endpoint) { |
| 292 | return new BelowValue<C>(endpoint); |
| 293 | } |
| 294 | |
| 295 | private static final class BelowValue<C extends Comparable> extends Cut<C> { |
| 296 | BelowValue(C endpoint) { |
no outgoing calls
no test coverage detected