get a node's right child. mind you, the node may not exist. no problem @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 673 | * @param index _KEY or _VALUE |
| 674 | */ |
| 675 | private static Node getRightChild(Node node, int index) |
| 676 | { |
| 677 | return (node == null) ? null |
| 678 | : node.getRight(index); |
| 679 | } |
| 680 | |
| 681 | /** |
| 682 | * get a node's left child. mind you, the node may not exist. no |
no test coverage detected