Skip to content

Commit 65e0f6d

Browse files
committed
some fixes to force a rebuild
1 parent 7c3abc1 commit 65e0f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/openstreetmap/josm/plugins/pt_assistant/actions/mendrelation/PublicTransportMendRelationAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ void goToNextWays(Way way, Way prevWay, List<Way> wayList) {
719719
// if the ways directly touch the next way
720720
way.isFirstLastNode(wayToReachAfterGap.firstNode()) || way.isFirstLastNode(wayToReachAfterGap.lastNode())
721721
// if next way turns out to be a roundabout
722-
|| wayToReachAfterGap.containsNode(exitNode) && WayUtils.isRoundabout(wayToReachAfterGap)
722+
|| (wayToReachAfterGap.containsNode(exitNode) && WayUtils.isRoundabout(wayToReachAfterGap))
723723
) {
724724
lst.add(wayList);
725725
displayFixVariantsWithOverlappingWays(lst);

0 commit comments

Comments
 (0)