(Node node)
| 255 | } |
| 256 | |
| 257 | private void AddNode(Node node) { |
| 258 | if (Nodes.putIfAbsent(node.getName(), node) != null) |
| 259 | throw new IllegalStateException(String.format("duplicate node '%s'", node.getName())); |
| 260 | } |
| 261 | |
| 262 | static final class Node { |
| 263 | private final String Host; |
no test coverage detected