Changeset 3531 in josm for trunk/test


Ignore:
Timestamp:
2010-09-16T10:27:46+02:00 (14 years ago)
Author:
stoecker
Message:

fix array preferences a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java

    r3480 r3531  
    1212
    1313    final double EPSILON = 1e-8;
    14    
     14
    1515    /**
    1616     * convert latlon to cartesian coordinates back and forth
     
    3030                double[] cart = ellips.latLon2Cart(ll);
    3131                ll = ellips.cart2LatLon(cart);
    32                
     32
    3333                if (!(Math.abs(lat - ll.lat())<EPSILON && Math.abs(lon - ll.lon())<EPSILON)) {
    3434                    String error = String.format("point: %s iterations: %s current: %s errorLat: %s errorLon %s",
Note: See TracChangeset for help on using the changeset viewer.