1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

change addVehicleType(VehicleTypeImpl) to addVehicleType(VehicleType)

This commit is contained in:
Stefan Schroeder 2013-07-08 08:39:09 +02:00
parent e982252fc7
commit 70bb212848

View file

@ -238,7 +238,7 @@ public class VehicleRoutingProblem {
* @param type * @param type
* @return builder * @return builder
*/ */
public Builder addVehicleType(VehicleTypeImpl type){ public Builder addVehicleType(VehicleType type){
vehicleTypes.add(type); vehicleTypes.add(type);
return this; return this;
} }