Ticket #3287: legacy.patch

File legacy.patch, 662 bytes (added by email@…, 15 years ago)
  • GpxReader.java

     
    232232                } else if (qName.equals("type")) {
    233233                    currentLink.type = accumulator.toString();
    234234                } else if (qName.equals("link")) {
     235                    if (currentLink.uri == null && !accumulator.toString().isEmpty()) {
     236                        currentLink = new GpxLink(accumulator.toString());
     237                    }
    235238                    currentState = states.pop();
    236239                }
    237240                if (currentState == state.author) {