This commit is contained in:
Andreas Schildbach 2012-12-16 15:08:37 +01:00
parent 776d1a9989
commit 6e331acefb

View file

@ -55,4 +55,15 @@ public class NaldoProvider extends AbstractEfaProvider
{ {
return xmlStopfinderRequest(new Location(LocationType.STATION, 0, null, constraint.toString())); return xmlStopfinderRequest(new Location(LocationType.STATION, 0, null, constraint.toString()));
} }
@Override
protected String parseLine(final String mot, final String name, final String longName, final String noTrainName)
{
if ("ZAB1/766".equals(name))
return "R" + name;
if ("ZAB2/768".equals(name))
return "R" + name;
return super.parseLine(mot, name, longName, noTrainName);
}
} }