Ignore:
Timestamp:
2016-03-17T01:50:12+01:00 (10 years ago)
Author:
Don-vip
Message:

sonar - Local variable and method parameter names should comply with a naming convention

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java

    r9989 r10001  
    573573        if (ws != null) {
    574574            Node n = new Node(Main.map.mapView.getLatLon(e.getX(), e.getY()));
    575             EastNorth A = ws.getFirstNode().getEastNorth();
    576             EastNorth B = ws.getSecondNode().getEastNorth();
    577             n.setEastNorth(Geometry.closestPointToSegment(A, B, n.getEastNorth()));
     575            EastNorth a = ws.getFirstNode().getEastNorth();
     576            EastNorth b = ws.getSecondNode().getEastNorth();
     577            n.setEastNorth(Geometry.closestPointToSegment(a, b, n.getEastNorth()));
    578578            Way wnew = new Way(ws.way);
    579579            wnew.addNode(ws.lowerIndex+1, n);
Note: See TracChangeset for help on using the changeset viewer.