Ticket #18852: gpx-reader.patch
| File gpx-reader.patch, 762 bytes (added by , 6 years ago) |
|---|
-
core/src/org/openstreetmap/josm/io/GpxReader.java
431 431 currentLink.type = accumulator.toString(); 432 432 break; 433 433 case "link": 434 if (currentLink.uri == null && accumulator != null &&!accumulator.toString().isEmpty()) {434 if (currentLink.uri == null && !accumulator.toString().isEmpty()) { 435 435 currentLink = new GpxLink(accumulator.toString()); 436 436 } 437 437 currentState = states.pop();
