Changeset 33706 in osm for applications/editors/josm/plugins/cadastre-fr/src
- Timestamp:
- 2017-10-05T17:49:51+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/actions/mapmode/Address.java
r33640 r33706 254 254 } 255 255 } 256 cmds.add(new ChangePropertyCommand(osm, tagHouseNumber, inputNumber.getText())); 256 Map<String, String> tags = new HashMap<>(); 257 tags.put(tagHouseNumber, inputNumber.getText()); 258 cmds.add(new ChangePropertyCommand(Main.main.getEditDataSet(), Collections.singleton(osm), tags)); 257 259 addStreetNameOrRelation(osm, cmds); 258 260 try {
Note:
See TracChangeset
for help on using the changeset viewer.