connection query option for bicycle carriage

This commit is contained in:
Andreas Schildbach 2012-06-24 20:21:34 +02:00
parent 825cdc61db
commit e3b7215b37
9 changed files with 59 additions and 31 deletions

View file

@ -53,6 +53,6 @@ public class ConnectionController
final Location fromLocation = new Location(fromType, fromId, null, from);
final Location toLocation = new Location(toType, toId, null, to);
final String products = "IRSUTBFC";
return provider.queryConnections(fromLocation, null, toLocation, new Date(), true, 4, products, WalkSpeed.NORMAL, Accessibility.NEUTRAL);
return provider.queryConnections(fromLocation, null, toLocation, new Date(), true, 4, products, WalkSpeed.NORMAL, Accessibility.NEUTRAL, null);
}
}