Ignore:
Timestamp:
2016-03-28T19:22:53+02:00 (9 years ago)
Author:
mkyral
Message:

PointInfo: Fix breakage caused by API cleaning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruianModule.java ΒΆ

    r30833 r32132  
    707707            JsonArray node = adresniMisto.getJsonArray("pozice");
    708708            am.setPosition(new LatLon(
    709               LatLon.roundToOsmPrecisionStrict(node.getJsonNumber(1).doubleValue()),
    710               LatLon.roundToOsmPrecisionStrict(node.getJsonNumber(0).doubleValue()))
     709              LatLon.roundToOsmPrecision(node.getJsonNumber(1).doubleValue()),
     710              LatLon.roundToOsmPrecision(node.getJsonNumber(0).doubleValue()))
    711711            );
    712712          } catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.