From e3acb05b0afb2917a8abbfbbd7589fb5a26e4735 Mon Sep 17 00:00:00 2001 From: Michal Maciejewski Date: Mon, 6 Nov 2017 00:02:02 +0100 Subject: [PATCH] unnecessary @SuppressWarnings removed --- .../graphhopper/jsprit/core/problem/VehicleRoutingProblem.java | 2 -- 1 file changed, 2 deletions(-) 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);