This commit is contained in:
Andreas Schildbach 2012-09-08 23:33:14 +02:00
parent f326933269
commit fb34a5920d

View file

@ -728,6 +728,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
return 'I' + str;
if (type.equals("IC")) // Intercity
return 'I' + str;
if ("InterCity".equals(type))
return 'I' + str;
if (type.equals("ICE")) // Intercity Express
return 'I' + str;
if (type.equals("X")) // InterConnex
@ -765,6 +767,8 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
if (type.equals("IR")) // Interregio
return 'R' + str;
if ("InterRegio".equals(type))
return 'R' + str;
if (type.equals("IRE")) // Interregio-Express
return 'R' + str;
if (P_LINE_IRE.matcher(type).matches())