Changeset 29661 in osm for applications/editors/josm/plugins/FixAddresses
- Timestamp:
- 2013-06-16T13:52:13+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/FixAddresses
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/build.xml
r29519 r29661 4 4 <property name="commit.message" value="fix compile error (core changes)"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 5886"/>6 <property name="plugin.main.version" value="6010"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/AddressEditContainer.java
r29081 r29661 533 533 for (OsmPrimitive osmPrimitive : osmData) { 534 534 if (osmPrimitive.isUsable()) { 535 osmPrimitive. visit(this);535 osmPrimitive.accept(this); 536 536 } 537 537 } -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/GuessAddressRunnable.java
r27326 r29661 177 177 break; 178 178 } 179 way. visit(guesser);179 way.accept(guesser); 180 180 } 181 181 … … 197 197 break; 198 198 } 199 node. visit(guesser);199 node.accept(guesser); 200 200 } 201 201
Note:
See TracChangeset
for help on using the changeset viewer.