Skip to content
Snippets Groups Projects
Commit b98583cd authored by DHikade's avatar DHikade
Browse files

Commented setSequenceNr() in sort out

parent 4da04b8b
Branches
Tags
No related merge requests found
...@@ -111,11 +111,11 @@ public class QuestionService implements IQuestionService, ApplicationEventPublis ...@@ -111,11 +111,11 @@ public class QuestionService implements IQuestionService, ApplicationEventPublis
// if SortIndex false, list is sorted so new question is appended to sorted list with (highest sequenceNr)++ // if SortIndex false, list is sorted so new question is appended to sorted list with (highest sequenceNr)++
if ("lecture".equals(question.getQuestionVariant())) { if ("lecture".equals(question.getQuestionVariant())) {
if(session.getSortLectureQuestions()) { if(session.getSortLectureQuestions()) {
question.setSequenceNr(); //question.setSequenceNr();
} }
} else if ("preparation".equals(question.getQuestionVariant())) { } else if ("preparation".equals(question.getQuestionVariant())) {
if(session.getSortPreparationQuestions()) { if(session.getSortPreparationQuestions()) {
question.setSequenceNr(); //question.setSequenceNr();
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment