Skip to content

Commit f959361

Browse files
committed
UnnecessaryParentheses
1 parent 933da01 commit f959361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/org/openstreetmap/josm/plugins/rex/actions/TagRoundaboutAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ public boolean makeFlare(Way iWay, Way tWay, Node cNode) {
734734
if (tWay.isClosed()) {
735735
//Closed
736736
// 0 1 2 3 4 0=4
737-
if (new_pos < 0) new_pos += (tWay.getRealNodesCount());
737+
if (new_pos < 0) new_pos += tWay.getRealNodesCount();
738738
if (new_pos >= tWay.getNodesCount()) new_pos = 0;
739739
} else {
740740
//Open

0 commit comments

Comments
 (0)