Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (11 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

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

    r6069 r8444  
    5050        double y = dy + xyz[1]*(1+s) + xyz[0]*rz - xyz[2]*rx;
    5151        double z = dz + xyz[2]*(1+s) + xyz[1]*rx - xyz[0]*ry;
    52         return Ellipsoid.WGS84.cart2LatLon(new double[] { x, y, z });
     52        return Ellipsoid.WGS84.cart2LatLon(new double[] {x, y, z});
    5353    }
    5454
     
    5959        double y = (1-s)*(-dy + xyz[1] + ((-dx+xyz[0])*(-rz) - (-dz+xyz[2])*(-rx)));
    6060        double z = (1-s)*(-dz + xyz[2] + ((-dy+xyz[1])*(-rx) - (-dx+xyz[0])*(-ry)));
    61         return this.ellps.cart2LatLon(new double[] { x, y, z });
     61        return this.ellps.cart2LatLon(new double[] {x, y, z});
    6262    }
    63 
    6463}
Note: See TracChangeset for help on using the changeset viewer.