(Entry<X,Y> p)
| 1231 | } |
| 1232 | |
| 1233 | private static <X,Y> Entry<X,Y> leftOf(Entry<X,Y> p) { |
| 1234 | return (p == null)? null: p.left; |
| 1235 | } |
| 1236 | |
| 1237 | private static <X,Y> Entry<X,Y> rightOf(Entry<X,Y> p) { |
| 1238 | return (p == null)? null: p.right; |
no outgoing calls
no test coverage detected