Istvan Neuwirth
Results
1
issues of
Istvan Neuwirth
While I was investigating #6478, I encountered the following case that might be a bug: ```java MutableGraph graph = GraphBuilder.undirected().build(); graph.putEdge(1, 2); Set n1IncidentEdges = graph.incidentEdges(1); assertThat(n1IncidentEdges).hasSize(1); graph.removeNode(1); assertThatIllegalArgumentException() .isThrownBy(()...
type=defect
status=triaged
package=graph
P2