Changeset 15382 in josm
- Timestamp:
- 2019-09-27T18:30:18+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculator.java
r15076 r15382 13 13 import org.openstreetmap.josm.data.osm.Way; 14 14 import org.openstreetmap.josm.gui.dialogs.relation.sort.WayConnectionType.Direction; 15 import org.openstreetmap.josm.tools.JosmRuntimeException;16 15 import org.openstreetmap.josm.tools.bugreport.BugReport; 17 16 … … 48 47 try { 49 48 lastWct = updateLinksFor(con, lastWct, i); 50 } catch ( JosmRuntimeException | IllegalArgumentException | IllegalStateException e) {49 } catch (RuntimeException e) { 51 50 int index = i; 52 throw BugReport.intercept(e).put("i", i).put("member", () -> members.get(index)).put("con", con); 51 throw BugReport.intercept(e).put("i", i).put("member", () -> members.get(index)).put("con", con) 52 .put("members", members).put("lastWct", lastWct).put("firstGroupIdx", firstGroupIdx); 53 53 } 54 54 }
Note:
See TracChangeset
for help on using the changeset viewer.