Skip to content

Commit

Permalink
SAM-3146 - Fixed NPE when a require flag for a quiz is set in Lessons. (
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm authored Feb 15, 2017
1 parent f0e09e0 commit 13032d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1192,8 +1192,8 @@ public AssessmentGradingData getHighestSubmittedAssessmentGrading(final Long pub
if (map != null && map.containsKey(ag.getAssessmentGradingId())) {
attachments = map.get(ag.getAssessmentGradingId());
}
ag.setAssessmentGradingAttachmentList(attachments);
}
ag.setAssessmentGradingAttachmentList(attachments);
return ag;
}

Expand Down

0 comments on commit 13032d8

Please sign in to comment.