(Graph<N> graph)
| 37 | |
| 38 | public final class ImmutableGraph<N> extends AbstractConfigurableGraph<N> { |
| 39 | private ImmutableGraph(Graph<N> graph) { |
| 40 | super(GraphBuilder.from(graph), getNodeConnections(graph)); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Returns an immutable copy of {@code graph}. |
nothing calls this directly
no test coverage detected