Skip to content
Snippets Groups Projects
Commit 3cf4e3be authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Fixed c&p error that displayed a wrong answer count

parent 17392c86
Branches
Tags
No related merge requests found
...@@ -509,7 +509,7 @@ public class QuestionService implements IQuestionService, ApplicationEventPublis ...@@ -509,7 +509,7 @@ public class QuestionService implements IQuestionService, ApplicationEventPublis
@Override @Override
@PreAuthorize("isAuthenticated()") @PreAuthorize("isAuthenticated()")
public int countPreparationQuestionAnswers(final String sessionkey) { public int countPreparationQuestionAnswers(final String sessionkey) {
return this.countLectureQuestionAnswersInternal(sessionkey); return this.countPreparationQuestionAnswersInternal(sessionkey);
} }
/* /*
......
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