mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-09 17:48:49 +00:00
AbstractEfaProvider: 'MRB26' line.
This commit is contained in:
parent
64a336d38e
commit
ea652f30cc
2 changed files with 2 additions and 2 deletions
|
@ -1097,6 +1097,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
|
|||
return new Line(id, network, Product.REGIONAL_TRAIN, "MR" + trainNum);
|
||||
if ("MRB".equals(trainType) || "Mitteldeutsche Regiobahn".equals(trainName))
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "MRB" + trainNum);
|
||||
if ("MRB26".equals(trainNum) && trainType == null)
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, trainNum);
|
||||
if ("ABR".equals(trainType) || "ABELLIO Rail NRW GmbH".equals(trainName))
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, "ABR" + trainNum);
|
||||
if ("NEB".equals(trainType) || "NEB Niederbarnimer Eisenbahn".equals(trainName))
|
||||
|
|
|
@ -79,8 +79,6 @@ public class VrrProvider extends AbstractEfaProvider {
|
|||
return new Line(id, network, Product.REGIONAL_TRAIN, symbol);
|
||||
if ("NordWestBahn".equals(trainName) && symbol != null)
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, symbol);
|
||||
if ("MRB26".equals(trainNum) && trainType == null)
|
||||
return new Line(id, network, Product.REGIONAL_TRAIN, trainNum);
|
||||
|
||||
if (trainType == null && "SEV7".equals(trainNum))
|
||||
return new Line(id, network, Product.BUS, trainNum);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue