﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2601	Links in waypoints are no longer read from gpx file after patch 2214	rudison	team	"After patch 2214 (svn changeset 1574) links in waypoints (*.wav) are no longer shown in the MarkerLayer after loading a gpx file.

Reason:
The following lines in GpxReader.java were changed with patch 2214 in endElement:

Before:

{{{
} else if (currentState != state.link) {
  Map<String, Object> attr = getAttr();
  if (!attr.containsKey(""link"")) {
  attr.put(""link"", new LinkedList<GpxLink>());
  }
  ((Collection<GpxLink>) attr.get(""link"")).add(currentLink);
}
}}}


After:
{{{
} else if (currentState == state.metadata) {
  Map<String, Object> attr = getAttr();
  if (!attr.containsKey(GpxData.META_LINKS)) {
  attr.put(GpxData.META_LINKS, new LinkedList<GpxLink>());
  }
  ((Collection<GpxLink>) attr.get(GpxData.META_LINKS)).add(currentLink);
}
}}}

This change avoids saving the link in the waypoint object."	defect	closed	major		Core	latest	duplicate		hampelratte
