Skip to content

Commit

Permalink
FINERACT-2080: fixed styles
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksii-novikov-onix committed Nov 20, 2024
1 parent e6f6114 commit d9e7483
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3174,7 +3174,8 @@ public void reassignLoanOfficer(final Staff newLoanOfficer, final LocalDate assi
}

public void removeLoanOfficer(final LocalDate unassignDate) {
findLatestIncompleteHistoryRecord().ifPresent(loanOfficerAssignmentHistory -> loanOfficerAssignmentHistory.updateEndDate(unassignDate));
findLatestIncompleteHistoryRecord()
.ifPresent(loanOfficerAssignmentHistory -> loanOfficerAssignmentHistory.updateEndDate(unassignDate));

this.loanOfficer = null;
}
Expand Down

0 comments on commit d9e7483

Please sign in to comment.