Fix API_REGION not a constant for some Navitia-based providers.

This commit is contained in:
Andreas Schildbach 2018-09-18 15:16:36 +02:00
parent 86c759e21c
commit 32142ed184
12 changed files with 12 additions and 12 deletions

View file

@ -23,7 +23,7 @@ import okhttp3.HttpUrl;
* @author Patrick Kanzler
*/
public class FranceNorthWestProvider extends AbstractNavitiaProvider {
private static String API_REGION = "fr-nw";
private static final String API_REGION = "fr-nw";
public FranceNorthWestProvider(final HttpUrl apiBase, final String authorization) {
super(NetworkId.FRANCENORTHWEST, apiBase, authorization);