Ignore:
Timestamp:
2016-03-27T19:11:42+02:00 (8 years ago)
Author:
donvip
Message:

remove call to deprecated method

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/KmlReader.java

    r30723 r32127  
    123123                        String[] values = tab[i].split(",");
    124124                        if (values.length >= 2) {
    125                             LatLon ll = new LatLon(Double.valueOf(values[1]), Double.valueOf(values[0])).getRoundedToOsmPrecisionStrict();
     125                            LatLon ll = new LatLon(Double.valueOf(values[1]), Double.valueOf(values[0])).getRoundedToOsmPrecision();
    126126                            node = nodes.get(ll);
    127127                            if (node == null) {
Note: See TracChangeset for help on using the changeset viewer.