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

simplify chaining

This commit is contained in:
oblonski 2015-01-30 14:24:56 +01:00
parent ecd3ff9552
commit 0c0898fe3c

View file

@ -191,8 +191,9 @@ public class InsertionBuilder {
timeScheduling=true; timeScheduling=true;
} }
public void setAllowVehicleSwitch(boolean allowVehicleSwitch) { public InsertionBuilder setAllowVehicleSwitch(boolean allowVehicleSwitch) {
this.allowVehicleSwitch = allowVehicleSwitch; this.allowVehicleSwitch = allowVehicleSwitch;
return this;
} }