(Entry<K, V> x)
| 4370 | } |
| 4371 | |
| 4372 | static <K, V> Entry<K, V> minimum(Entry<K, V> x) { |
| 4373 | while (x.left != null) { |
| 4374 | x = x.left; |
| 4375 | } |
| 4376 | return x; |
| 4377 | } |
| 4378 | |
| 4379 | static <K, V> Entry<K, V> predecessor(Entry<K, V> x) { |
| 4380 | if (x.left != null) { |
no outgoing calls
no test coverage detected