more lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@12 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-07-17 08:04:35 +00:00
parent c92b4f73e8
commit d3a4c65ba6

View file

@ -539,6 +539,8 @@ public class MvvProvider implements NetworkProvider
return "S" + line; return "S" + line;
else if (LINES.containsKey("U" + line)) else if (LINES.containsKey("U" + line))
return "U" + line; return "U" + line;
else if (line.matches("N4\\d"))
return "B" + line;
throw new IllegalStateException("cannot normalize null product, line " + line); throw new IllegalStateException("cannot normalize null product, line " + line);
} }