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

Removed unused method

parent 1a9a08df
No related merge requests found
...@@ -37,8 +37,6 @@ public interface IQuestionService { ...@@ -37,8 +37,6 @@ public interface IQuestionService {
int getSkillQuestionCount(String sessionkey); int getSkillQuestionCount(String sessionkey);
List<String> getQuestionIds(String sessionKey);
void deleteQuestion(String questionId); void deleteQuestion(String questionId);
void deleteAllQuestions(String sessionKeyword); void deleteAllQuestions(String sessionKeyword);
......
...@@ -120,17 +120,6 @@ public class QuestionService implements IQuestionService { ...@@ -120,17 +120,6 @@ public class QuestionService implements IQuestionService {
return result; return result;
} }
@Override
@Authenticated
public List<String> getQuestionIds(String sessionKey) {
User user = getCurrentUser();
Session session = databaseDao.getSessionFromKeyword(sessionKey);
if (session == null) {
throw new NotFoundException();
}
return databaseDao.getQuestionIds(session, user);
}
@Override @Override
@Authenticated @Authenticated
public void deleteQuestion(String questionId) { public void deleteQuestion(String questionId) {
......
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