Changeset 8870 in josm for trunk/src/org/openstreetmap/josm/actions/CreateCircleAction.java
- Timestamp:
- 2015-10-13T23:50:14+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CreateCircleAction.java
r8513 r8870 248 248 * @return Modified nodes list ordered according hand traffic. 249 249 */ 250 private List<Node> orderNodesByTrafficHand(List<Node> nodes) { 250 private static List<Node> orderNodesByTrafficHand(List<Node> nodes) { 251 251 boolean rightHandTraffic = true; 252 252 for (Node n: nodes) { … … 268 268 * @return Modified nodes list with same direction as way. 269 269 */ 270 private List<Node> orderNodesByWay(List<Node> nodes, Way way) { 270 private static List<Node> orderNodesByWay(List<Node> nodes, Way way) { 271 271 List<Node> wayNodes = way.getNodes(); 272 272 if (!way.isClosed()) {
Note:
See TracChangeset
for help on using the changeset viewer.