Changeset 4573 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2011-11-03T23:23:34+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Bounds.java
r4522 r4573 44 44 45 45 public Bounds(LatLon b) { 46 this(b, b); 46 // Do not call this(b, b) to avoid GPX performance issue (see #7028) until roundToOsmPrecision() is improved 47 this.minLat = LatLon.roundToOsmPrecision(b.lat()); 48 this.minLon = LatLon.roundToOsmPrecision(b.lon()); 49 this.maxLat = this.minLat; 50 this.maxLon = this.minLon; 47 51 } 48 52
Note:
See TracChangeset
for help on using the changeset viewer.