Changeset 24095 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-11-06T18:40:59+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java
r24094 r24095 210 210 OSMAddress aNode = null; 211 211 // Address nodes are recycled in order to keep instance variables like guessed names 212 aNode = NodeFactory.createNode(n);212 aNode = OsmFactory.createNode(n); 213 213 214 214 if (aNode != null) { … … 256 256 */ 257 257 private void createNodeFromWay(Way w) { 258 IOSMEntity ne = NodeFactory.createNodeFromWay(w);258 IOSMEntity ne = OsmFactory.createNodeFromWay(w); 259 259 260 260 if (!processNode(ne, w)) { -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OsmFactory.java
r24094 r24095 19 19 import org.openstreetmap.josm.data.osm.Way; 20 20 21 public class NodeFactory {21 public class OsmFactory { 22 22 private static HashMap<String, OSMAddress> addressCache = new HashMap<String, OSMAddress>(); 23 23
Note:
See TracChangeset
for help on using the changeset viewer.