- Timestamp:
- 2026-07-23T18:34:52+02:00 (37 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GeoJSONReader.java
r18723 r19599 1 // License: GPL. For details, see LICENSE file.2 1 package org.openstreetmap.josm.io; 3 2 … … 10 9 import java.io.InputStreamReader; 11 10 import java.io.StringReader; 11 import java.lang.ClassCastException; 12 12 import java.nio.charset.StandardCharsets; 13 13 import java.util.ArrayList; … … 473 473 } 474 474 mergeEqualMultipolygonWays(); 475 } catch (IOException | IllegalArgumentException | JsonParsingException e) { 475 } catch (IOException | IllegalArgumentException | ClassCastException | JsonParsingException e) { 476 476 throw new IllegalDataException(e); 477 477 }
Note:
See TracChangeset
for help on using the changeset viewer.
