Ignore:
Timestamp:
2014-02-27T01:41:49+01:00 (10 years ago)
Author:
Don-vip
Message:

fix some Sonar issues (JLS order)

File:
1 edited

Legend:

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

    r6798 r6889  
    405405     */
    406406    private static class WayData {
    407         final public Way way;             // The assigned way
    408         final public int nSeg;            // Number of Segments of the Way
    409         final public int nNode;           // Number of Nodes of the Way
     407        public final Way way;             // The assigned way
     408        public final int nSeg;            // Number of Segments of the Way
     409        public final int nNode;           // Number of Nodes of the Way
    410410        public Direction[] segDirections; // Direction of the segments
    411411        // segment i goes from node i to node (i+1)
    412412        public EastNorth segSum;          // (Vector-)sum of all horizontal segments plus the sum of all vertical
    413         //     segments turned by 90 degrees
     413        // segments turned by 90 degrees
    414414        public double heading;            // heading of segSum == approximate heading of the way
    415415        public WayData(Way pWay) {
Note: See TracChangeset for help on using the changeset viewer.