mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-13 08:10:46 +00:00
AbstractEfaProvider: Fix parse error because of optional 'locality' in mobileCoordRequest().
This commit is contained in:
parent
27bf5d6c1e
commit
c9e7379a78
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
|
|||
final String id = XmlPullUtil.valueTag(pp, "id");
|
||||
XmlPullUtil.valueTag(pp, "omc");
|
||||
XmlPullUtil.optValueTag(pp, "pid", null);
|
||||
final String place = normalizeLocationName(XmlPullUtil.valueTag(pp, "locality"));
|
||||
final String place = normalizeLocationName(XmlPullUtil.optValueTag(pp, "locality", null));
|
||||
XmlPullUtil.valueTag(pp, "layer");
|
||||
XmlPullUtil.valueTag(pp, "gisID");
|
||||
XmlPullUtil.valueTag(pp, "ds");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue