Changeset 16919 in osm for applications/editors
- Timestamp:
- 2009-08-08T16:26:13+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/tageditor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r16857 r16919 89 89 <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/> 90 90 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/TagEditor"/> 91 <attribute name="Plugin-Mainversion" value=" ${coreversion.info.entry.revision}"/>91 <attribute name="Plugin-Mainversion" value="1935"/> 92 92 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 93 93 </manifest> -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/editor/TagEditorModel.java
r16574 r16919 327 327 328 328 for (OsmPrimitive primitive : primitives) { 329 if (primitive. keys== null) {329 if (primitive.getKeys() == null) { 330 330 continue; 331 331 } 332 for (String oldkey : primitive.key s.keySet()) {332 for (String oldkey : primitive.keySet()) { 333 333 if (!currentkeys.contains(oldkey)) { 334 334 ChangePropertyCommand deleteCommand =
Note:
See TracChangeset
for help on using the changeset viewer.