Changeset 12588 in josm
- Timestamp:
- 2017-08-10T23:42:54+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmReader.java
r12138 r12588 43 43 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 44 44 import org.openstreetmap.josm.tools.CheckParameterUtil; 45 import org.openstreetmap.josm.tools.UncheckedParseException; 45 46 import org.openstreetmap.josm.tools.Utils; 46 47 import org.openstreetmap.josm.tools.date.DateUtils; … … 631 632 } catch (IllegalDataException e) { 632 633 throw e; 633 } catch (XmlStreamParsingException e) {634 } catch (XmlStreamParsingException | UncheckedParseException e) { 634 635 throw new IllegalDataException(e.getMessage(), e); 635 636 } catch (XMLStreamException e) {
Note:
See TracChangeset
for help on using the changeset viewer.