force a node (if it exists) black @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 633 | * @param index _KEY or _VALUE |
| 634 | */ |
| 635 | private static void makeBlack(Node node, int index) |
| 636 | { |
| 637 | if (node != null) |
| 638 | { |
| 639 | node.setBlack(index); |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | /** |
| 644 | * get a node's grandparent. mind you, the node, its parent, or |
no test coverage detected