Ignore:
Timestamp:
2015-06-21T01:13:09+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: redundant modifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2SubGrid.java

    r8510 r8512  
    209209     * @return interpolated value
    210210     */
    211     private final double interpolate(float a, float b, float c, float d, double x, double y) {
     211    private double interpolate(float a, float b, float c, float d, double x, double y) {
    212212        return a + (((double) b - (double) a) * x) + (((double) c - (double) a) * y) +
    213213        (((double) a + (double) d - b - c) * x * y);
Note: See TracChangeset for help on using the changeset viewer.