Changeset 15884 in josm for trunk/src/org
- Timestamp:
- 2020-02-18T21:56:47+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JoinAreasAction.java
r15883 r15884 1447 1447 for (WayInPolygon way : ways) { 1448 1448 actionWays.add(way.way); 1449 if (oldest.isNew() || !way.way.isNew() && oldest.getUniqueId() > way.way.getUniqueId()) {1449 if (oldest.isNew() || (!way.way.isNew() && oldest.getUniqueId() > way.way.getUniqueId())) { 1450 1450 oldest = way.way; 1451 1451 oldestPos = actionWays.size() - 1;
Note:
See TracChangeset
for help on using the changeset viewer.