- Timestamp:
- 2020-02-26T10:50:27+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Territories.java
r15913 r15937 27 27 import javax.json.stream.JsonParser; 28 28 import javax.json.stream.JsonParser.Event; 29 import javax.json.stream.JsonParsingException; 29 30 30 31 import org.openstreetmap.josm.data.coor.LatLon; … … 188 189 } 189 190 } 190 } catch (IOException e) { 191 throw new JosmRuntimeException(e); 191 } catch (IOException |JsonParsingException e) { 192 Logging.trace(e); 193 Logging.warn(tr("Failed to parse taginfo data geofabrik-index-v1-nogeom.json")); 192 194 } 193 195 }
Note:
See TracChangeset
for help on using the changeset viewer.