line Ausfl

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@792 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-09-25 20:09:27 +00:00
parent 4964965f11
commit ce033e31cb

View file

@ -926,6 +926,21 @@ public final class BvgProvider extends AbstractHafasProvider
return super.normalizeLine(line);
}
@Override
protected char normalizeType(final String type)
{
final String ucType = type.toUpperCase();
if ("AUSFL".equals(ucType)) // Umgebung Berlin
return 'R';
final char t = super.normalizeType(type);
if (t != 0)
return t;
return 0;
}
private static final Map<String, int[]> LINES = new HashMap<String, int[]>();
static