Skip to content

Commit

Permalink
Fix error message: classes not lessons ACDM-1805 #resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis-Cruz committed Oct 2, 2020
1 parent d01c128 commit 779b941
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ private List<Shift> readShiftsToEnrolFrom(SchoolClass schoolClass, List<String>
for (final String shiftName : shiftNames) {
Shift shift = readShiftFrom(schoolClass, shiftName);
if (shift == null) {
errorLog.add(new StringBuilder("Não existe nenhum turno: '").append(shiftName).append("' associado à aula: '")
errorLog.add(new StringBuilder("Não existe nenhum turno: '").append(shiftName).append("' associado à turma: '")
.append(schoolClass.getNome()).append("'.").toString());
shift = readShiftByName(shiftName);
if (shift == null) {
Expand Down

0 comments on commit 779b941

Please sign in to comment.