diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/problem/VehicleRoutingProblem.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/problem/VehicleRoutingProblem.java index 4e88701e..99a1788e 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/problem/VehicleRoutingProblem.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/problem/VehicleRoutingProblem.java @@ -447,7 +447,6 @@ public class VehicleRoutingProblem { return new VehicleRoutingProblem(this); } - @SuppressWarnings("UnusedDeclaration") public Builder addLocation(String locationId, Coordinate coordinate) { tentative_coordinates.put(locationId, coordinate); return this; @@ -473,7 +472,6 @@ public class VehicleRoutingProblem { * @param vehicles vehicles to be added * @return this builder */ - @SuppressWarnings("deprecation") public Builder addAllVehicles(Collection vehicles) { for (Vehicle v : vehicles) { addVehicle(v);