Ignore:
Timestamp:
2018-07-15T12:39:47+02:00 (6 years ago)
Author:
michael2402
Message:

See #16388: Fix Checkstyle / Test issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/actions/DeleteCurrentRelationAction.java

    r14029 r14030  
    66import java.awt.event.ActionEvent;
    77import java.beans.PropertyChangeEvent;
    8 import java.beans.PropertyChangeListener;
    98
    109import org.openstreetmap.josm.actions.mapmode.DeleteAction;
     
    1716 * @since 9496
    1817 */
    19 public class DeleteCurrentRelationAction extends AbstractRelationEditorAction implements PropertyChangeListener {
     18public class DeleteCurrentRelationAction extends AbstractRelationEditorAction {
    2019    private static final long serialVersionUID = 1L;
    2120
    2221    /**
    2322     * Constructs a new {@code DeleteCurrentRelationAction}.
    24      * @param layer OSM data layer
    25      * @param editor relation editor
     23     * @param editorAccess An interface to access the relation editor contents.
    2624     */
    2725    public DeleteCurrentRelationAction(IRelationEditorActionAccess editorAccess) {
     
    4846    @Override
    4947    public void propertyChange(PropertyChangeEvent evt) {
     48        // Do not call super.
    5049        if (GenericRelationEditor.RELATION_SNAPSHOT_PROP.equals(evt.getPropertyName())) {
    5150            updateEnabledState();
Note: See TracChangeset for help on using the changeset viewer.