Skip to content

Commit

Permalink
Revert "SAK-48557 Gradebook Extra credit items do not display in cour…
Browse files Browse the repository at this point in the history
…se grade (sakaiproject#12760)"

This reverts commit b6d13fb.
  • Loading branch information
ern committed Sep 27, 2024
1 parent 8a3418a commit 330898a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ private double getTotalPointsInternal(final Gradebook gradebook, final List<Cate

boolean excused = BooleanUtils.toBoolean(gradeRec.getExcludedFromGrade());
if (assign.getCounted() && !assign.getUngraded() && !assign.getRemoved() && countedSet.contains(assign) &&
assign.getPointsPossible() != null && assign.getPointsPossible() > 0 && !gradeRec.getDroppedFromGrade()
assign.getPointsPossible() != null && assign.getPointsPossible() > 0 && !gradeRec.getDroppedFromGrade() && !extraCredit
&& !excused) {
countedGradeRecs.add(gradeRec);
}
Expand Down

0 comments on commit 330898a

Please sign in to comment.