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

Fixed checkstyle errors

parent e2e80612
No related merge requests found
......@@ -25,8 +25,6 @@ import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.fourspaces.couchdb.Document;
import de.thm.arsnova.annotation.Authenticated;
import de.thm.arsnova.dao.IDatabaseDao;
import de.thm.arsnova.entities.Answer;
......@@ -71,7 +69,7 @@ public class QuestionService implements IQuestionService {
@Override
@Authenticated
public Question saveQuestion(Question question) {
Session session = this.databaseDao.getSessionFromKeyword(question.getSession());
Session session = this.databaseDao.getSessionFromKeyword(question.getSession());
return this.databaseDao.saveQuestion(session, question);
}
......
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