juste enlever les 2 deprecated pas enlevé

This commit is contained in:
Matteo Sabben 2025-04-04 10:10:36 +02:00
parent ca03cd5860
commit d7c5d21b42

View file

@ -212,7 +212,7 @@ public class Path {
* @param speed Speed to compute the travel time. * @param speed Speed to compute the travel time.
* @return Time (in seconds) required to travel this path at the given speed (in * @return Time (in seconds) required to travel this path at the given speed (in
* kilometers-per-hour). * kilometers-per-hour).
* @deprecated Need to be implemented. *
*/ */
public double getTravelTime(double speed) { public double getTravelTime(double speed) {
double travelTime=0; // sinon error si on met O.O double travelTime=0; // sinon error si on met O.O
@ -227,7 +227,7 @@ public class Path {
* every arc. * every arc.
* *
* @return Minimum travel time to travel this path (in seconds). * @return Minimum travel time to travel this path (in seconds).
* @deprecated Need to be implemented. *
*/ */
public double getMinimumTravelTime() { public double getMinimumTravelTime() {
double minimumTravelTime=0; double minimumTravelTime=0;