Commit 55edff1c by Tuukka Kivilahti

and moar

1 parent 99c8ec85
...@@ -123,8 +123,8 @@ public class LectureReportsView extends GenericCDIView { ...@@ -123,8 +123,8 @@ public class LectureReportsView extends GenericCDIView {
public List<String> getEmptyLinesList() { public List<String> getEmptyLinesList() {
ArrayList<String> retList = new ArrayList<String>(); ArrayList<String> retList = new ArrayList<String>();
for(int n = getCurrentLecture().getParticipantsCount(); n <= getCurrentLecture().getMaxParticipantsCount(); n++) { for(int n = getCurrentLecture().getParticipantsCount(); n < getCurrentLecture().getMaxParticipantsCount(); n++) {
retList.add(""+n+":"); retList.add(""+(n+1)+":");
} }
return retList; return retList;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!