Ignore:
Timestamp:
2020-08-23T15:31:04+02:00 (4 years ago)
Author:
simon04
Message:

fix #19698 - Refactoring: make private fields final

File:
1 edited

Legend:

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

    r16442 r16913  
    363363         * Such as a^2 + b^2 = 1, ie (-b, a) is a unit vector of line
    364364         */
    365         private double a, b, c;
     365        private double a;
     366        private double b;
     367        private final double c;
    366368        /**
    367369         * (xM, yM) are coordinates of a point of the line
    368370         */
    369         private double xM, yM;
     371        private final double xM;
     372        private final double yM;
    370373
    371374        /**
Note: See TracChangeset for help on using the changeset viewer.