parse departure message for Germany

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@141 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-09-06 09:54:17 +00:00
parent b9571a9399
commit fc12d20236
6 changed files with 40 additions and 10 deletions

View file

@ -481,7 +481,7 @@ public class OebbProvider implements NetworkProvider
final String position = mDepFine.group(7) != null ? "Gl. " + ParserUtils.resolveEntities(mDepFine.group(7)) : null;
final Departure dep = new Departure(plannedTime, predictedTime, line, line != null ? LINES.get(line.charAt(0)) : null,
position, destinationId, destination);
position, destinationId, destination, null);
if (!departures.contains(dep))
departures.add(dep);