From 2a1bda6c4b7585d2beb75ffaf284e5d806d14307 Mon Sep 17 00:00:00 2001 From: Nicolas Derive Date: Sun, 20 Dec 2015 02:33:52 +0100 Subject: [PATCH] French South West: Add missing transportation system, as Tisseo network is also in fr-sw Navitia region. --- enabler/src/de/schildbach/pte/FrenchSouthWestProvider.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/enabler/src/de/schildbach/pte/FrenchSouthWestProvider.java b/enabler/src/de/schildbach/pte/FrenchSouthWestProvider.java index 04d5a816..3d223e42 100644 --- a/enabler/src/de/schildbach/pte/FrenchSouthWestProvider.java +++ b/enabler/src/de/schildbach/pte/FrenchSouthWestProvider.java @@ -61,6 +61,11 @@ public class FrenchSouthWestProvider extends AbstractNavitiaProvider // Batcub return new Style(Shape.ROUNDED, Style.parseColor(color), computeForegroundColor(color)); } + case SUBWAY: + { + // Toulouse subway (from Tisseo network) + return new Style(Shape.ROUNDED, Style.parseColor(color), computeForegroundColor(color)); + } default: throw new IllegalArgumentException("Unhandled product: " + product); }