Ignore:
Timestamp:
2019-09-29T23:59:43+02:00 (5 years ago)
Author:
Don-vip
Message:

remove deprecated code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/RemoveNodesCommand.java

    r15077 r15390  
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
    6 import java.util.HashSet;
    7 import java.util.List;
    86import java.util.Set;
    97
     
    2119 */
    2220public class RemoveNodesCommand extends AbstractNodesCommand<Set<Node>> {
    23 
    24     /**
    25      * Constructs a new {@code RemoveNodesCommand}.
    26      * @param way The way to modify. Must not be null, and belong to a data set
    27      * @param rmNodes The list of nodes to remove
    28      * @deprecated Use {@link #RemoveNodesCommand(Way, Set)}
    29      */
    30     @Deprecated
    31     public RemoveNodesCommand(Way way, List<Node> rmNodes) {
    32         super(way.getDataSet(), way, new HashSet<>(rmNodes));
    33     }
    3421
    3522    /**
Note: See TracChangeset for help on using the changeset viewer.