Ignore:
Timestamp:
2014-02-05T23:22:04+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #8234 - remove duplicated/unused icons + javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java

    r6380 r6814  
    2727
    2828public class JoinNodeWayAction extends JosmAction {
     29
     30    /**
     31     * Constructs a new {@code JoinNodeWayAction}.
     32     */
    2933    public JoinNodeWayAction() {
    3034        super(tr("Join Node to Way"), "joinnodeway", tr("Include a node into the nearest way segments"),
     
    5357            HashMap<Way, List<Integer>> insertPoints = new HashMap<Way, List<Integer>>();
    5458            for (WaySegment ws : wss) {
    55                 // Maybe cleaner to pass a "isSelected" predicate to getNearestWaySegements, but this is atm. less invasive.
     59                // Maybe cleaner to pass a "isSelected" predicate to getNearestWaySegments, but this is less invasive.
    5660                if(restrictToSelectedWays && !ws.way.isSelected()) {
    5761                    continue;
Note: See TracChangeset for help on using the changeset viewer.