From 32edd28aa13fe5197792ba38948c6a9c8e94bd3b Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Wed, 16 Jul 2014 12:12:31 +0200 Subject: [PATCH] Migrate Chemnitz & Mittelsachsen to JSON stopfinder. --- enabler/src/de/schildbach/pte/VmsProvider.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/enabler/src/de/schildbach/pte/VmsProvider.java b/enabler/src/de/schildbach/pte/VmsProvider.java index 13638a43..f687ff6c 100644 --- a/enabler/src/de/schildbach/pte/VmsProvider.java +++ b/enabler/src/de/schildbach/pte/VmsProvider.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 */ @@ -66,10 +60,4 @@ public class VmsProvider extends AbstractEfaProvider return super.parseLine(mot, symbol, name, longName, trainType, trainNum, trainName); } - - @Override - public SuggestLocationsResult suggestLocations(final CharSequence constraint) throws IOException - { - return xmlStopfinderRequest(new Location(LocationType.ANY, null, null, constraint.toString())); - } }