Skip to content

Commit

Permalink
Small change to set years in ELL to 0.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Jan 22, 2025
1 parent c0a336e commit a8d68cb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ public void setStudentYearsInEll(SdcSchoolCollectionStudentEntity student){
log.debug("Student years in ELL found for SDC student {} :: is {}", student.getSdcSchoolCollectionStudentID(), yearsInEll);
if(yearsInEll.isPresent()){
student.setYearsInEll(yearsInEll.get().getYearsInEll());
}else{
student.setYearsInEll(0);
}
}
}
Expand Down

0 comments on commit a8d68cb

Please sign in to comment.