Changeset 2437 in josm for trunk/src/org/openstreetmap/josm/data/osm/Node.java
- Timestamp:
- 2009-11-11T08:34:56+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r2427 r2437 25 25 } 26 26 if (getDataSet() != null) { 27 getDataSet(). reindexNode(this);27 getDataSet().fireNodeMoved(this); 28 28 } 29 29 } … … 43 43 } 44 44 if (getDataSet() != null) { 45 getDataSet(). reindexNode(this);45 getDataSet().fireNodeMoved(this); 46 46 } 47 47 } … … 177 177 } 178 178 179 @Override 179 180 public BBox getBBox() { 180 181 if (coor == null) … … 183 184 return new BBox(coor, coor); 184 185 } 186 187 @Override 188 public void updatePosition() { 189 // Do nothing for now, but in future replace CachedLatLon with simple doubles and update precalculated EastNorth value here 190 } 185 191 }
Note:
See TracChangeset
for help on using the changeset viewer.
