git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@901 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2012-01-26 09:33:19 +00:00
parent 3c8f712b6a
commit 51962ad1bb

View file

@ -1838,7 +1838,7 @@ public abstract class AbstractHafasProvider extends AbstractNetworkProvider
protected Line normalizeLine(final String line)
{
if (line == null || line.length() == 0)
if (line == null || line.length() == 0 || line.equals("#"))
return null;
final Matcher mBusSpecial = P_LINE_BUS_SPECIAL.matcher(line);