Changeset 10795 in josm
- Timestamp:
- 2016-08-13T17:26:03+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java
r10716 r10795 14 14 import java.util.LinkedList; 15 15 import java.util.List; 16 import java.util.Objects; 16 17 import java.util.Set; 17 18 … … 332 333 if (!targetNode.equals(targetLocationNode)) { 333 334 LatLon targetLocationCoor = targetLocationNode.getCoor(); 334 if (! targetNode.getCoor().equals(targetLocationCoor)) {335 if (!Objects.equals(targetNode.getCoor(), targetLocationCoor)) { 335 336 Node newTargetNode = new Node(targetNode); 336 337 newTargetNode.setCoor(targetLocationCoor);
Note:
See TracChangeset
for help on using the changeset viewer.