remove duplicate autocompleteStations implementations

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@939 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2012-02-12 19:57:39 +00:00
parent 8f834f14ff
commit ef7b3eb9cf
9 changed files with 4 additions and 86 deletions

View file

@ -349,7 +349,10 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
}
}
public abstract List<Location> autocompleteStations(final CharSequence constraint) throws IOException;
public List<Location> autocompleteStations(final CharSequence constraint) throws IOException
{
return jsonStopfinderRequest(new Location(LocationType.ANY, 0, null, constraint.toString()));
}
private String processItdOdvPlace(final XmlPullParser pp) throws XmlPullParserException, IOException
{