mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-18 08:19:51 +00:00
stricter tag checks
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@600 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
2087a04b3d
commit
0ef56f0081
1 changed files with 7 additions and 7 deletions
|
@ -622,7 +622,7 @@ public abstract class AbstractHafasProvider implements NetworkProvider
|
|||
|
||||
while (XmlPullUtil.test(pp, "ConSection"))
|
||||
{
|
||||
XmlPullUtil.enter(pp);
|
||||
XmlPullUtil.enter(pp, "ConSection");
|
||||
|
||||
// departure
|
||||
XmlPullUtil.enter(pp, "Departure");
|
||||
|
@ -642,10 +642,10 @@ public abstract class AbstractHafasProvider implements NetworkProvider
|
|||
departurePos = null;
|
||||
XmlPullUtil.exit(pp, "Platform");
|
||||
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp, "Dep");
|
||||
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp, "BasicStop");
|
||||
XmlPullUtil.exit(pp, "Departure");
|
||||
|
||||
// journey
|
||||
final Line line;
|
||||
|
@ -731,10 +731,10 @@ public abstract class AbstractHafasProvider implements NetworkProvider
|
|||
arrivalPos = null;
|
||||
XmlPullUtil.exit(pp, "Platform");
|
||||
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp, "Arr");
|
||||
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp);
|
||||
XmlPullUtil.exit(pp, "BasicStop");
|
||||
XmlPullUtil.exit(pp, "Arrival");
|
||||
|
||||
XmlPullUtil.exit(pp);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue