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

Removed obviously unused code

parent db7a9582
Branches
Tags
No related merge requests found
......@@ -154,22 +154,6 @@ public class LecturerQuestionController extends AbstractController {
return questionService.getSkillQuestionCount(sessionkey);
}
/*
* TODO is this used anywhere?
@RequestMapping(value = "/ids", method = RequestMethod.GET)
@ResponseBody
public final List<String> getQuestionIds(
@RequestParam final String sessionkey,
final HttpServletResponse response
) {
List<String> questions = questionService.getQuestionIds(sessionkey);
if (questions == null || questions.isEmpty()) {
throw new NotFoundException();
}
return questions;
}
*/
@RequestMapping(value = "/{questionId}", method = RequestMethod.DELETE)
@ResponseBody
public final void deleteAnswersAndQuestion(
......
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