- Timestamp:
- 2009-07-04T22:10:43+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r1724 r1731 23 23 24 24 public final void setCoor(LatLon coor) { 25 if(this.coor == null) 26 this.coor = new CachedLatLon(coor); 27 else 28 this.coor.setCoor(coor); 25 if(coor != null) 26 { 27 if(this.coor == null) 28 this.coor = new CachedLatLon(coor); 29 else 30 this.coor.setCoor(coor); 31 } 29 32 } 30 33
Note:
See TracChangeset
for help on using the changeset viewer.