Changeset 27997 in osm for applications/editors/josm/plugins/conflation/src/org
- Timestamp:
- 2012-03-06T03:29:53+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/conflation/src/org/openstreetmap/josm/plugins/conflation/ConflationToggleDialog.java
r27971 r27997 32 32 import static org.openstreetmap.josm.tools.I18n.tr; 33 33 import org.openstreetmap.josm.tools.Shortcut; 34 import utilsplugin2.dumbutils.ReplaceGeometry Action;34 import utilsplugin2.dumbutils.ReplaceGeometryUtils; 35 35 36 36 public class ConflationToggleDialog extends ToggleDialog … … 206 206 @Override 207 207 public void actionPerformed(ActionEvent e) { 208 ReplaceGeometryAction rg = new ReplaceGeometryAction();209 208 ConflationCandidate c = conflationLayer.getSelectedCandidate(); 210 if ( rg.replace(c.getReferenceObject(), c.getSubjectObject())) {209 if (ReplaceGeometryUtils.replace(c.getReferenceObject(), c.getSubjectObject())) { 211 210 candidates.remove(c); 212 211 }
Note:
See TracChangeset
for help on using the changeset viewer.
