From 3542a9a4d8bd3f8ef36a9df28b104a7bec04a9a8 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Wed, 16 Jul 2014 12:10:54 +0200 Subject: [PATCH] Migrate Dubai to JSON stopfinder. --- enabler/src/de/schildbach/pte/DubProvider.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/enabler/src/de/schildbach/pte/DubProvider.java b/enabler/src/de/schildbach/pte/DubProvider.java index d06c4cf7..5a75726d 100644 --- a/enabler/src/de/schildbach/pte/DubProvider.java +++ b/enabler/src/de/schildbach/pte/DubProvider.java @@ -17,12 +17,6 @@ package de.schildbach.pte; -import java.io.IOException; - -import de.schildbach.pte.dto.Location; -import de.schildbach.pte.dto.LocationType; -import de.schildbach.pte.dto.SuggestLocationsResult; - /** * @author Andreas Schildbach */ @@ -53,10 +47,4 @@ public class DubProvider extends AbstractEfaProvider return false; } - - @Override - public SuggestLocationsResult suggestLocations(final CharSequence constraint) throws IOException - { - return xmlStopfinderRequest(new Location(LocationType.STATION, null, null, constraint.toString())); - } }