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:
andreas.schildbach@gmail.com 2011-05-04 14:17:03 +00:00
parent 2087a04b3d
commit 0ef56f0081

View file

@ -622,7 +622,7 @@ public abstract class AbstractHafasProvider implements NetworkProvider
while (XmlPullUtil.test(pp, "ConSection")) while (XmlPullUtil.test(pp, "ConSection"))
{ {
XmlPullUtil.enter(pp); XmlPullUtil.enter(pp, "ConSection");
// departure // departure
XmlPullUtil.enter(pp, "Departure"); XmlPullUtil.enter(pp, "Departure");
@ -642,10 +642,10 @@ public abstract class AbstractHafasProvider implements NetworkProvider
departurePos = null; departurePos = null;
XmlPullUtil.exit(pp, "Platform"); XmlPullUtil.exit(pp, "Platform");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "Dep");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "BasicStop");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "Departure");
// journey // journey
final Line line; final Line line;
@ -731,10 +731,10 @@ public abstract class AbstractHafasProvider implements NetworkProvider
arrivalPos = null; arrivalPos = null;
XmlPullUtil.exit(pp, "Platform"); XmlPullUtil.exit(pp, "Platform");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "Arr");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "BasicStop");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp, "Arrival");
XmlPullUtil.exit(pp); XmlPullUtil.exit(pp);