(C endpoint)
| 307 | } |
| 308 | |
| 309 | static <C extends Comparable> Cut<C> belowValue(C endpoint) { |
| 310 | return new BelowValue<>(endpoint); |
| 311 | } |
| 312 | |
| 313 | private static final class BelowValue<C extends Comparable> extends Cut<C> { |
| 314 | BelowValue(C endpoint) { |
no outgoing calls
no test coverage detected