(E edge)
| 107 | private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> graph) { |
| 108 | return new Function<E, N>() { |
| 109 | @Override |
| 110 | public N apply(E edge) { |
| 111 | return graph.source(edge); |
| 112 | } |
| 113 | }; |
| 114 | } |
| 115 |
nothing calls this directly
no test coverage detected