Ignore:
Timestamp:
2016-07-02T22:02:04+02:00 (8 years ago)
Author:
donvip
Message:

checkstyle

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  
    1616                        </arguments>
    1717                </buildCommand>
     18                <buildCommand>
     19                        <name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
     20                        <arguments>
     21                        </arguments>
     22                </buildCommand>
    1823        </buildSpec>
    1924        <natures>
    2025                <nature>org.eclipse.jdt.core.javanature</nature>
     26                <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
    2127        </natures>
    2228</projectDescription>
  • applications/editors/josm/plugins/michigan_left/src/MichiganLeft/MichiganLeft.java

    r32472 r32536  
    1 //License: GPL
     1// License: GPL. For details, see LICENSE file.
    22package MichiganLeft;
    33
     
    4949        private LinkedList<Command> cmds = new LinkedList<>();
    5050
    51         public MichiganLeftAction() {
     51        MichiganLeftAction() {
    5252            super(tr("Michigan Left"), "michigan_left",
    5353                tr("Adds no left turn for sets of 4 or 5 ways."),
     
    6262            ArrayList<OsmPrimitive> selection = new ArrayList<>();
    6363
    64             for (OsmPrimitive prim : mainSelection)
     64            for (OsmPrimitive prim : mainSelection) {
    6565                selection.add(prim);
     66            }
    6667
    6768            int ways = 0;
Note: See TracChangeset for help on using the changeset viewer.