mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-19 08:49:58 +00:00
removed obsolete method
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@242 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
dcd673d6f7
commit
1a269d808a
16 changed files with 4 additions and 192 deletions
|
@ -36,7 +36,6 @@ import de.schildbach.pte.dto.GetConnectionDetailsResult;
|
|||
import de.schildbach.pte.dto.NearbyStationsResult;
|
||||
import de.schildbach.pte.dto.QueryConnectionsResult;
|
||||
import de.schildbach.pte.dto.Station;
|
||||
import de.schildbach.pte.dto.StationLocationResult;
|
||||
import de.schildbach.pte.exception.SessionExpiredException;
|
||||
import de.schildbach.pte.util.Color;
|
||||
import de.schildbach.pte.util.ParserUtils;
|
||||
|
@ -175,11 +174,6 @@ public class MvvProvider extends AbstractEfaProvider
|
|||
return new NearbyStationsResult(uri, stations.subList(0, maxStations));
|
||||
}
|
||||
|
||||
public StationLocationResult stationLocation(final String stationId) throws IOException
|
||||
{
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
private static final Map<WalkSpeed, String> WALKSPEED_MAP = new HashMap<WalkSpeed, String>();
|
||||
static
|
||||
{
|
||||
|
@ -662,6 +656,8 @@ public class MvvProvider extends AbstractEfaProvider
|
|||
return "B" + line;
|
||||
if (line.equals("Schienenersatzverkehr"))
|
||||
return "BSEV";
|
||||
if (line.startsWith("MVV-Ruftaxi "))
|
||||
return "B" + line;
|
||||
if (P_NORMALIZE_LINE_TRAM.matcher(line).matches())
|
||||
return "T" + line;
|
||||
if (P_NORMALIZE_LINE_NACHTTRAM.matcher(line).matches())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue