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 06417ce commit 3af0763
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,7 @@ private void updateScheduleStartingAt(
edges.put(outEdge, true);
}
for (PatternEdge inEdge : startNode.getIn()) {
if (inEdge.getItem().isBidirectional()) {
edges.put(inEdge, false);
}
edges.put(inEdge, false);
}

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

0 comments on commit 3af0763

Please sign in to comment.