Skip to content

Commit

Permalink
Merge pull request #1685 from Luis-Cruz/feature/ACDM-1805
Browse files Browse the repository at this point in the history
Fix error message: classes not lessons ACDM-1805 #resolve
  • Loading branch information
Luis-Cruz authored Oct 2, 2020
2 parents 2362303 + 779b941 commit 4ca5de2
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 4ca5de2

Please sign in to comment.