parse place and nameWithPlace for efa based providers

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@439 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-01-08 17:03:43 +00:00
parent 7a077f56c7
commit 7ca487c632
5 changed files with 57 additions and 26 deletions

View file

@ -126,7 +126,7 @@ public final class BahnProvider extends AbstractHafasProvider
final int sDist = Integer.parseInt(m.group(4));
final String sName = ParserUtils.resolveEntities(m.group(5).trim());
final Station station = new Station(sId, sName, sLat, sLon, sDist, null, null);
final Station station = new Station(sId, null, sName, null, sLat, sLon, sDist, null, null);
stations.add(station);
}