Skip to content

Commit

Permalink
Revert "gh-3052 One line fix, bug in MapStore."
Browse files Browse the repository at this point in the history
This reverts commit b73cf69.
  • Loading branch information
GCHQDev404 committed Nov 2, 2023
1 parent 7ad514b commit 36063e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void updateElementIndex(final Element element, final MapImpl mapImpl) {
mapImpl.addIndex(entitySeed, element);
} else {
final Edge edge = (Edge) element;
edge.setIdentifiers(edge.getSource(), edge.getDestination(), edge.isDirected(), edge.getMatchedVertex());
edge.setIdentifiers(edge.getSource(), edge.getDestination(), edge.isDirected(), EdgeSeed.MatchedVertex.SOURCE);
final EntitySeed sourceEntitySeed = new EntitySeed(edge.getSource());
mapImpl.addIndex(sourceEntitySeed, edge);

Expand Down

0 comments on commit 36063e2

Please sign in to comment.