(Entry<K, V> x)
| 4354 | } |
| 4355 | |
| 4356 | static <K, V> Entry<K, V> minimum(Entry<K, V> x) { |
| 4357 | while (x.left != null) { |
| 4358 | x = x.left; |
| 4359 | } |
| 4360 | return x; |
| 4361 | } |
| 4362 | |
| 4363 | static <K, V> Entry<K, V> predecessor(Entry<K, V> x) { |
| 4364 | if (x.left != null) { |
no outgoing calls
no test coverage detected