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

bugfix: copyConstructor of endAct did not copy end.arrTime() - fixed

This commit is contained in:
Stefan Schroeder 2013-08-09 15:52:26 +02:00
parent d78297a214
commit e2ab285d01

View file

@ -67,6 +67,8 @@ public final class End implements TourActivity {
this.locationId = end.getLocationId(); this.locationId = end.getLocationId();
theoretical_earliestOperationStartTime = end.getTheoreticalEarliestOperationStartTime(); theoretical_earliestOperationStartTime = end.getTheoreticalEarliestOperationStartTime();
theoretical_latestOperationStartTime = end.getTheoreticalLatestOperationStartTime(); theoretical_latestOperationStartTime = end.getTheoreticalLatestOperationStartTime();
arrTime = end.getArrTime();
endTime = end.getEndTime();
} }
public double getTheoreticalEarliestOperationStartTime() { public double getTheoreticalEarliestOperationStartTime() {