fixed parsing again too much

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@77 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-08-12 20:59:57 +00:00
parent 5b1f74082c
commit ed54c30d46
2 changed files with 2 additions and 2 deletions

View file

@ -449,7 +449,7 @@ public final class BahnProvider implements NetworkProvider
final List<Departure> departures = new ArrayList<Departure>(8);
// choose matcher
final Matcher mDepCoarse = P_DEPARTURES_COARSE.matcher(page);
final Matcher mDepCoarse = P_DEPARTURES_COARSE.matcher(mHeadCoarse.group(1));
while (mDepCoarse.find())
{
final Matcher mDepFine = P_DEPARTURES_FINE.matcher(mDepCoarse.group(1));

View file

@ -510,7 +510,7 @@ public class MvvProvider implements NetworkProvider
final Calendar calendar = new GregorianCalendar();
final Matcher mDepCoarse = P_DEPARTURES_COARSE.matcher(page);
final Matcher mDepCoarse = P_DEPARTURES_COARSE.matcher(mHeadCoarse.group(1));
while (mDepCoarse.find())
{
final Matcher mDepFine = P_DEPARTURES_FINE.matcher(mDepCoarse.group(1));