Fix autocomplete coverage for Salzburg.

This commit is contained in:
Andreas Schildbach 2014-02-10 10:58:57 +01:00
parent 467299ec99
commit adca912cc4
2 changed files with 22 additions and 12 deletions

View file

@ -17,12 +17,6 @@
package de.schildbach.pte;
import java.io.IOException;
import java.util.List;
import de.schildbach.pte.dto.Location;
import de.schildbach.pte.dto.LocationType;
/**
* @author Andreas Schildbach
*/
@ -49,10 +43,4 @@ public class SvvProvider extends AbstractEfaProvider
return false;
}
@Override
public List<Location> autocompleteStations(final CharSequence constraint) throws IOException
{
return xmlStopfinderRequest(new Location(LocationType.STATION, 0, null, constraint.toString()));
}
}