Changeset 24171 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-11-09T23:17:55+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OsmUtils.java
r24166 r24171 23 23 import org.openstreetmap.josm.data.osm.RelationMember; 24 24 import org.openstreetmap.josm.data.osm.Way; 25 import org.openstreetmap.josm.tools.CheckParameterUtil; 25 26 import org.openstreetmap.josm.tools.Pair; 26 27 … … 67 68 */ 68 69 private static double findMinimum(LatLon a, LatLon b, LatLon c) { 70 CheckParameterUtil.ensureParameterNotNull(c, "c"); 71 CheckParameterUtil.ensureParameterNotNull(b, "b"); 72 CheckParameterUtil.ensureParameterNotNull(a, "a"); 73 69 74 LatLon mid = new LatLon((a.lat() + b.lat()) / 2, (a.lon() + b.lon()) / 2); 70 75
Note:
See TracChangeset
for help on using the changeset viewer.