remove special implementation for Munich autocomplete

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@253 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-10-09 10:37:12 +00:00
parent 16ec23dd31
commit b9e4cabbcf
2 changed files with 4 additions and 45 deletions

View file

@ -76,7 +76,7 @@ public abstract class AbstractEfaProvider implements NetworkProvider
throw new IllegalStateException();
XmlPullUtil.nextStartTagInsideTree(pp, null, "itdOdvName");
final String nameState = pp.getAttributeValue(null, "state");
if ("list".equals(nameState))
if ("identified".equals(nameState) || "list".equals(nameState))
while (XmlPullUtil.nextStartTagInsideTree(pp, null, "odvNameElem"))
results.add(processOdvNameElem(pp));