Migrate Mittelschwaben to JSON stopfinder.

This commit is contained in:
Andreas Schildbach 2014-07-16 12:16:34 +02:00
parent 3543bc8491
commit 459b6cd4b9

View file

@ -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()));
}
}