Migrate Dubai to JSON stopfinder.

This commit is contained in:
Andreas Schildbach 2014-07-16 12:10:54 +02:00
parent 6fd0fdff4d
commit 3542a9a4d8

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
*/
@ -53,10 +47,4 @@ public class DubProvider extends AbstractEfaProvider
return false;
}
@Override
public SuggestLocationsResult suggestLocations(final CharSequence constraint) throws IOException
{
return xmlStopfinderRequest(new Location(LocationType.STATION, null, null, constraint.toString()));
}
}