Changeset 32536 in osm for applications/editors/josm/plugins/michigan_left/src
- Timestamp:
- 2016-07-02T22:02:04+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java
r32472 r32536 1 // License: GPL1 // License: GPL. For details, see LICENSE file. 2 2 package MichiganLeft; 3 3 … … 49 49 private LinkedList<Command> cmds = new LinkedList<>(); 50 50 51 publicMichiganLeftAction() {51 MichiganLeftAction() { 52 52 super(tr("Michigan Left"), "michigan_left", 53 53 tr("Adds no left turn for sets of 4 or 5 ways."), … … 62 62 ArrayList<OsmPrimitive> selection = new ArrayList<>(); 63 63 64 for (OsmPrimitive prim : mainSelection) 64 for (OsmPrimitive prim : mainSelection) { 65 65 selection.add(prim); 66 } 66 67 67 68 int ways = 0;
Note:
See TracChangeset
for help on using the changeset viewer.