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

remove unused field

This commit is contained in:
oblonski 2016-11-01 08:44:08 +01:00
parent 51740a21d6
commit 4542f8370d
No known key found for this signature in database
GPG key ID: 179DE487285680D1

View file

@ -568,8 +568,6 @@ public class VehicleRoutingProblem {
*/
private final FleetSize fleetSize;
private final Locations locations;
private Map<Job, List<AbstractActivity>> activityMap;
private int nuActivities;
@ -591,7 +589,6 @@ public class VehicleRoutingProblem {
this.initialVehicleRoutes = builder.initialRoutes;
this.transportCosts = builder.transportCosts;
this.activityCosts = builder.activityCosts;
this.locations = builder.getLocations();
this.activityMap = builder.activityMap;
this.nuActivities = builder.activityIndexCounter;
this.allLocations = builder.allLocations;