From 337d84efe55adf0d13b3c0c19878d4c536e42e59 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Thu, 11 Oct 2018 10:17:33 +0200 Subject: [PATCH] RT: Update API base. --- enabler/src/de/schildbach/pte/RtProvider.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/enabler/src/de/schildbach/pte/RtProvider.java b/enabler/src/de/schildbach/pte/RtProvider.java index 211b2610..776c0111 100644 --- a/enabler/src/de/schildbach/pte/RtProvider.java +++ b/enabler/src/de/schildbach/pte/RtProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2010-2015 the original author or authors. + * Copyright the original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,14 +28,14 @@ import okhttp3.HttpUrl; * @author Andreas Schildbach */ public class RtProvider extends AbstractHafasLegacyProvider { - private static final HttpUrl API_BASE = HttpUrl.parse("http://railteam.hafas.de/bin/"); + private static final HttpUrl API_BASE = HttpUrl.parse("http://railteam.hafas.eu/bin/"); + // http://railteam.hafas.de/bin/ private static final Product[] PRODUCTS_MAP = { Product.HIGH_SPEED_TRAIN, Product.HIGH_SPEED_TRAIN, Product.HIGH_SPEED_TRAIN, Product.REGIONAL_TRAIN, Product.SUBURBAN_TRAIN, Product.BUS, Product.FERRY, Product.SUBWAY, Product.TRAM, Product.ON_DEMAND }; public RtProvider() { super(NetworkId.RT, API_BASE, "dn", PRODUCTS_MAP); - setStationBoardHasStationTable(false); }