(Entry<K, V> x)
| 4363 | } |
| 4364 | |
| 4365 | static <K, V> Entry<K, V> maximum(Entry<K, V> x) { |
| 4366 | while (x.right != null) { |
| 4367 | x = x.right; |
| 4368 | } |
| 4369 | return x; |
| 4370 | } |
| 4371 | |
| 4372 | static <K, V> Entry<K, V> minimum(Entry<K, V> x) { |
| 4373 | while (x.left != null) { |
no outgoing calls
no test coverage detected