Skip to content
Snippets Groups Projects
Commit f400f914 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Readded accidently removed line as comment.

parent b44a3c1c
No related merge requests found
......@@ -923,6 +923,8 @@ public class CouchDBDao implements IDatabaseDao {
List<Answer> answers = new ArrayList<Answer>();
for (Document d : results.getResults()) {
Answer a = (Answer) JSONObject.toBean(d.getJSONObject().getJSONObject("value"), Answer.class);
/* TODO: check if the following line is needed */
// a.setSessionId(s.get_id());
a.setQuestionId(questionId);
answers.add(a);
}
......
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