Changeset 32536 in osm for applications/editors/josm/plugins
- Timestamp:
- 2016-07-02T22:02:04+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/michigan_left
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/michigan_left/.project
r32286 r32536 16 16 </arguments> 17 17 </buildCommand> 18 <buildCommand> 19 <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> 20 <arguments> 21 </arguments> 22 </buildCommand> 18 23 </buildSpec> 19 24 <natures> 20 25 <nature>org.eclipse.jdt.core.javanature</nature> 26 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 21 27 </natures> 22 28 </projectDescription> -
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.