NS: 'Ferry' line.

This commit is contained in:
Andreas Schildbach 2018-10-31 14:17:56 +01:00
parent 4c8d4af1e1
commit 7e3670418d

View file

@ -54,6 +54,9 @@ public class NsProvider extends AbstractHafasLegacyProvider {
if (ucType.equals("N")) // Avignon
return Product.REGIONAL_TRAIN;
if ("FERRY".equals(ucType))
return Product.FERRY;
return super.normalizeType(type);
}
}