Skip to content

Commit

Permalink
fix: make sure to resolve pattern matching correctly in all the cases
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Dec 14, 2024
1 parent 32420fd commit 7731523
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -462,9 +462,7 @@ private void updateScheduleStartingAt(
edges.put(outEdge, true);
}
for (PatternEdge inEdge : startNode.in) {
if (inEdge.item.isBidirectional()) {
edges.put(inEdge, false);
}
edges.put(inEdge, false);
}

for (Map.Entry<PatternEdge, Boolean> edgeData : edges.entrySet()) {
Expand Down

0 comments on commit 7731523

Please sign in to comment.