Ignore:
Timestamp:
2012-03-31T23:23:15+02:00 (12 years ago)
Author:
donvip
Message:

[josm_opendata] Update to JOSM 5132

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

Legend:

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

    r28152 r28172  
    2828    <property name="commit.message" value="Commit message"/>
    2929    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    30     <property name="plugin.main.version" value="5124"/>
     30    <property name="plugin.main.version" value="5132"/>
    3131    <!-- should not be necessary to change the following properties -->
    3232    <property name="josm" location="../../core/dist/josm-custom.jar"/>
     
    177177                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData"/>
    178178                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
     179                <attribute name="Plugin-Requires" value="jts"/>
    179180                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    180181            </manifest>
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java

    r28044 r28172  
    2828import java.util.Set;
    2929
    30 import org.openstreetmap.josm.actions.CombineWayAction;
    3130import org.openstreetmap.josm.actions.CombineWayAction.NodeGraph;
    3231import org.openstreetmap.josm.command.Command;
     
    3433import org.openstreetmap.josm.corrector.UserCancelException;
    3534import org.openstreetmap.josm.data.osm.Node;
     35import org.openstreetmap.josm.data.osm.OsmPrimitive;
    3636import org.openstreetmap.josm.data.osm.Relation;
    3737import org.openstreetmap.josm.data.osm.TagCollection;
     
    148148        dialog.getTagConflictResolverModel().populate(tagsToEdit, completeWayTags.getKeysWithMultipleValues());
    149149        dialog.setTargetPrimitive(targetWay);
    150         Set<Relation> parentRelations = CombineWayAction.getParentRelations(ways);
     150        Set<Relation> parentRelations = OsmPrimitive.getParentRelations(ways);
    151151        dialog.getRelationMemberConflictResolverModel().populate(
    152152                parentRelations,
Note: See TracChangeset for help on using the changeset viewer.