Changeset 34190 in osm
- Timestamp:
- 2018-05-13T15:04:38+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/tabular/CsvReader.java
r34185 r34190 43 43 try { 44 44 return csvReader.parse(in, instance); 45 } catch (IllegalArgumentException e) {45 } catch (IllegalArgumentException | IllegalDataException e) { 46 46 if (csvHandler == null || csvHandler.getSeparator() == null || ";".equals(csvHandler.getSeparator())) { 47 47 // If default sep has been used, try comma
Note:
See TracChangeset
for help on using the changeset viewer.