diff --git a/enabler/src/de/schildbach/pte/VrtProvider.java b/enabler/src/de/schildbach/pte/VrtProvider.java index ea784264..ae5ebf55 100644 --- a/enabler/src/de/schildbach/pte/VrtProvider.java +++ b/enabler/src/de/schildbach/pte/VrtProvider.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 */ @@ -49,10 +43,4 @@ public class VrtProvider extends AbstractEfaProvider return false; } - - @Override - public SuggestLocationsResult suggestLocations(final CharSequence constraint) throws IOException - { - return xmlStopfinderRequest(new Location(LocationType.ANY, null, null, constraint.toString())); - } }