force a node (if it exists) red @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 619 | * @param index _KEY or _VALUE |
| 620 | */ |
| 621 | private static void makeRed(Node node, int index) |
| 622 | { |
| 623 | if (node != null) |
| 624 | { |
| 625 | node.setRed(index); |
| 626 | } |
| 627 | } |
| 628 | |
| 629 | /** |
| 630 | * force a node (if it exists) black |
no test coverage detected