Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oblonski committed Apr 19, 2022
1 parent 368aa87 commit 9e42bc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public InsertionData getInsertionData(final VehicleRoute currentRoute, final Job
/*
check hard constraints at route level
*/
InsertionData noInsertion = checkRouteContraints(insertionContext, constraintManager);
InsertionData noInsertion = checkRouteConstraints(insertionContext, constraintManager);
if (noInsertion != null) return noInsertion;

Collection<HardConstraint> failedActivityConstraints = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public InsertionData getInsertionData(final VehicleRoute currentRoute, final Job
/*
check hard route constraints
*/
InsertionData noInsertion = checkRouteContraints(insertionContext, constraintManager);
InsertionData noInsertion = checkRouteConstraints(insertionContext, constraintManager);
if (noInsertion != null) return noInsertion;
/*
check soft route constraints
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public InsertionData getInsertionData(final VehicleRoute currentRoute, final Job
/*
check hard route constraints
*/
InsertionData noInsertion = checkRouteContraints(insertionContext, constraintManager);
InsertionData noInsertion = checkRouteConstraints(insertionContext, constraintManager);
if (noInsertion != null) return noInsertion;
/*
check soft route constraints
Expand Down

0 comments on commit 9e42bc8

Please sign in to comment.