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

remove redundant code

This commit is contained in:
oblonski 2013-06-20 20:58:36 +02:00
parent 4c4d9ea96d
commit d223475cb4

View file

@ -42,27 +42,6 @@ public class VehicleImpl implements Vehicle {
public static class VehicleType {
public static class TimeSchedule{
private double earliestStart;
private double latestEnd;
public TimeSchedule(double earliestStart, double latestEnd) {
super();
this.earliestStart = earliestStart;
this.latestEnd = latestEnd;
}
public double getEarliestStart() {
return earliestStart;
}
public double getLatestEnd() {
return latestEnd;
}
}
public static class Builder{
public static Builder newInstance(String id, int capacity){