This commit is contained in:
Andreas Schildbach 2015-05-24 10:52:43 +02:00
parent 05391cab75
commit 966b248d50
13 changed files with 46 additions and 21 deletions

View file

@ -3002,6 +3002,10 @@ public abstract class AbstractHafasProvider extends AbstractNetworkProvider
if ("SL".equals(ucType)) // Sessel-Lift
return Product.CABLECAR;
// Unknown product
if ("E".equals(ucType))
return null;
throw new IllegalStateException("cannot normalize type '" + type + "'");
}