(K key)
| 1461 | |
| 1462 | |
| 1463 | private boolean tooLow(K key) { |
| 1464 | if (lo != null) { |
| 1465 | int c = m.comparator().compare(key, lo); |
| 1466 | if (c < 0 || (c == 0 && !loInclusive)) |
| 1467 | return true; |
| 1468 | } |
| 1469 | return false; |
| 1470 | } |
| 1471 | |
| 1472 | private boolean tooHigh(K key) { |
| 1473 | if (hi != null) { |
no test coverage detected