(K key)
| 1018 | |
| 1019 | |
| 1020 | private boolean tooLow(K key) { |
| 1021 | if (lo != null) { |
| 1022 | int c = m.comparator().compare(key, lo); |
| 1023 | if (c < 0 || (c == 0 && !loInclusive)) |
| 1024 | return true; |
| 1025 | } |
| 1026 | return false; |
| 1027 | } |
| 1028 | |
| 1029 | private boolean tooHigh(K key) { |
| 1030 | if (hi != null) { |
no test coverage detected