Compare commits

..

No commits in common. "046ef12ff984a2e6ae9a7bf3419d4394d1981c30" and "1e4d6f3d8520d2433486995dd7a343a9ac29b6c7" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View file

@ -228,7 +228,8 @@ public class Path {
* @deprecated Need to be implemented.
*/
public double getTravelTime(double speed) {
return speed/(getLength()*3.6);
// TODO:
return speed /getLength()*3.6;
}
/**