more lines

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@658 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-05-25 11:21:23 +00:00
parent 7b5f1afd03
commit 5d6d496a35
6 changed files with 26 additions and 26 deletions

View file

@ -141,18 +141,18 @@ public class SbbProvider extends AbstractHafasProvider
{
final String ucType = type.toUpperCase();
if (ucType.equals("IN")) // Italien Roma-Lecce
if ("IN".equals(ucType)) // Italien Roma-Lecce
return 'I';
if (ucType.equals("E"))
if ("E".equals(ucType))
return 'R';
if (ucType.equals("T"))
if ("T".equals(ucType))
return 'R';
if (ucType.equals("M")) // Metro Wien
if ("M".equals(ucType)) // Metro Wien
return 'U';
if (ucType.equals("TX"))
if ("TX".equals(ucType))
return 'B';
final char t = super.normalizeType(type);