From 459b6cd4b936992d807c521cb06daf86a1b34acf Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Wed, 16 Jul 2014 12:16:34 +0200 Subject: [PATCH] Migrate Mittelschwaben to JSON stopfinder. --- enabler/src/de/schildbach/pte/VvmProvider.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/enabler/src/de/schildbach/pte/VvmProvider.java b/enabler/src/de/schildbach/pte/VvmProvider.java index b05a6581..7c9397c4 100644 --- a/enabler/src/de/schildbach/pte/VvmProvider.java +++ b/enabler/src/de/schildbach/pte/VvmProvider.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 */ @@ -51,10 +45,4 @@ public class VvmProvider extends AbstractEfaProvider return false; } - - @Override - public SuggestLocationsResult suggestLocations(final CharSequence constraint) throws IOException - { - return xmlStopfinderRequest(new Location(LocationType.ANY, null, null, constraint.toString())); - } }