mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-19 08:49:58 +00:00
more lines
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@658 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
7b5f1afd03
commit
5d6d496a35
6 changed files with 26 additions and 26 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue