Skip to content

Commit

Permalink
Merge pull request #492 from bcgov/hotfix/GRAD2-2947
Browse files Browse the repository at this point in the history
GRAD2-2947: hot fixes on comparing course session with adult start date.
  • Loading branch information
cditcher authored Oct 4, 2024
2 parents ec0d86a + eb6871a commit 4824393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void splitSortStudentCourses(List<StudentCourse> studentCourses, Date adu
String courseSessionDate = sc.getSessionDate() + "/01";
Date temp = null;
try {
temp = toLastDayOfMonth(RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd"));
temp = RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd");
} catch (ParseException e) {
logger.debug(e.getMessage());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public RuleData fire() {
String courseSessionDate = sc.getSessionDate() + "/01";
Date temp = null;
try {
temp = toLastDayOfMonth(RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd"));
temp = RuleEngineApiUtils.parseDate(courseSessionDate, "yyyy/MM/dd");
} catch (ParseException e) {
logger.debug(e.getMessage());
}
Expand Down

0 comments on commit 4824393

Please sign in to comment.