Ignore:
Timestamp:
2009-08-08T16:26:13+02:00 (15 years ago)
Author:
guggis
Message:

Replacing deprecated APIs

Location:
applications/editors/josm/plugins/tageditor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tageditor/build.xml

    r16857 r16919  
    8989                <attribute name="Plugin-Description" value="Provides a dialog for editing tags in a tabular grid."/>
    9090                <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"/>
    9292                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    9393            </manifest>
  • applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/editor/TagEditorModel.java

    r16574 r16919  
    327327
    328328                for (OsmPrimitive primitive : primitives) {
    329                         if (primitive.keys == null) {
     329                        if (primitive.getKeys() == null) {
    330330                                continue;
    331331                        }
    332                         for (String oldkey : primitive.keys.keySet()) {
     332                        for (String oldkey : primitive.keySet()) {
    333333                                if (!currentkeys.contains(oldkey)) {
    334334                                        ChangePropertyCommand deleteCommand =
Note: See TracChangeset for help on using the changeset viewer.