(Object node)
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public int outDegree(Object node) { |
| 46 | // only works for non-multigraphs; multigraphs not yet supported |
| 47 | return successors(node).size(); |
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public boolean equals(@Nullable Object object) { |
nothing calls this directly
no test coverage detected