Skip to content
Snippets Groups Projects
Commit 970fcd84 authored by DHikade's avatar DHikade Committed by Tom Käsler
Browse files

Commented setSequenceNr() in sort out

parent 31b81ad9
No related merge requests found
......@@ -118,11 +118,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 ("lecture".equals(question.getQuestionVariant())) {
if(session.getSortLectureQuestions()) {
question.setSequenceNr();
//question.setSequenceNr();
}
} else if ("preparation".equals(question.getQuestionVariant())) {
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