Changeset 28172 in osm for applications/editors/josm/plugins/opendata/src
- Timestamp:
- 2012-03-31T23:23:15+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/WayCombiner.java
r28044 r28172 28 28 import java.util.Set; 29 29 30 import org.openstreetmap.josm.actions.CombineWayAction;31 30 import org.openstreetmap.josm.actions.CombineWayAction.NodeGraph; 32 31 import org.openstreetmap.josm.command.Command; … … 34 33 import org.openstreetmap.josm.corrector.UserCancelException; 35 34 import org.openstreetmap.josm.data.osm.Node; 35 import org.openstreetmap.josm.data.osm.OsmPrimitive; 36 36 import org.openstreetmap.josm.data.osm.Relation; 37 37 import org.openstreetmap.josm.data.osm.TagCollection; … … 148 148 dialog.getTagConflictResolverModel().populate(tagsToEdit, completeWayTags.getKeysWithMultipleValues()); 149 149 dialog.setTargetPrimitive(targetWay); 150 Set<Relation> parentRelations = CombineWayAction.getParentRelations(ways);150 Set<Relation> parentRelations = OsmPrimitive.getParentRelations(ways); 151 151 dialog.getRelationMemberConflictResolverModel().populate( 152 152 parentRelations,
Note:
See TracChangeset
for help on using the changeset viewer.