Skip to content

Commit

Permalink
populate instructor type for unnamed instructors
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroldwong committed Aug 16, 2024
1 parent a1e110b commit 32e56f5
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,11 @@ protected void buildExcelDocument(Map<String, Object> model, Workbook workbook,
}

if (unnamedInstructors.size() > 0) {
for (int i = 0; i < unnamedInstructors.size(); i++) {
scheduleCostValues.add(unnamedInstructors.get(i));
scheduleCostValues.add("");
numberOfInstructorColumns--;
}
for (String unnamedInstructor : unnamedInstructors) {
scheduleCostValues.add(unnamedInstructor);
scheduleCostValues.add(unnamedInstructor);
numberOfInstructorColumns--;
}
}

for (int i = 0; i < numberOfInstructorColumns; i++) {
Expand Down

0 comments on commit 32e56f5

Please sign in to comment.