ignore unparsable serving lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@324 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-10-29 20:27:41 +00:00
parent fcdbabfcd6
commit c0dfae1a39

View file

@ -688,12 +688,19 @@ public abstract class AbstractEfaProvider implements NetworkProvider
XmlPullUtil.enter(pp);
while (XmlPullUtil.test(pp, "itdServingLine"))
{
final String line = parseLine(pp.getAttributeValue(null, "motType"), pp.getAttributeValue(null, "number"), pp
.getAttributeValue(null, "number"));
final String destination = normalizeLocationName(pp.getAttributeValue(null, "direction"));
final String destinationIdStr = pp.getAttributeValue(null, "destID");
final int destinationId = destinationIdStr.length() > 0 ? Integer.parseInt(destinationIdStr) : 0;
lines.add(new Line(line, lineColors(line), destinationId, destination));
try
{
final String line = parseLine(pp.getAttributeValue(null, "motType"), pp.getAttributeValue(null, "number"), pp
.getAttributeValue(null, "number"));
final String destination = normalizeLocationName(pp.getAttributeValue(null, "direction"));
final String destinationIdStr = pp.getAttributeValue(null, "destID");
final int destinationId = destinationIdStr.length() > 0 ? Integer.parseInt(destinationIdStr) : 0;
lines.add(new Line(line, lineColors(line), destinationId, destination));
}
catch (final IllegalArgumentException x)
{
// swallow for now
}
XmlPullUtil.enter(pp);
XmlPullUtil.exit(pp);