Changeset 33480 in osm for applications
- Timestamp:
- 2017-07-27T22:43:35+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/UndeleteAction.java
r33374 r33480 83 83 } else { 84 84 // We search n-1 version with redaction robustness 85 intidx = 1;86 int n = h.getNumVersions();85 long idx = 1; 86 long n = hPrimitive1.getVersion(); 87 87 while (hPrimitive2 == null && idx < n) { 88 88 hPrimitive2 = h.getByVersion(n - idx++);
Note:
See TracChangeset
for help on using the changeset viewer.