(Entry<K, V> x)
| 4347 | } |
| 4348 | |
| 4349 | static <K, V> Entry<K, V> maximum(Entry<K, V> x) { |
| 4350 | while (x.right != null) { |
| 4351 | x = x.right; |
| 4352 | } |
| 4353 | return x; |
| 4354 | } |
| 4355 | |
| 4356 | static <K, V> Entry<K, V> minimum(Entry<K, V> x) { |
| 4357 | while (x.left != null) { |
no outgoing calls
no test coverage detected