From d1ee9a0d1e0d13ae986dd352dc64aef20de739a0 Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <daniel.gerhardt@mni.thm.de> Date: Sat, 9 Mar 2013 12:07:09 +0100 Subject: [PATCH] Added FIXME comment on wrongly named property of InterposedQuestion. --- .../java/de/thm/arsnova/entities/InterposedQuestion.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/de/thm/arsnova/entities/InterposedQuestion.java b/src/main/java/de/thm/arsnova/entities/InterposedQuestion.java index ca004b76..0f500975 100644 --- a/src/main/java/de/thm/arsnova/entities/InterposedQuestion.java +++ b/src/main/java/de/thm/arsnova/entities/InterposedQuestion.java @@ -21,12 +21,17 @@ package de.thm.arsnova.entities; public class InterposedQuestion { - + private String _id; private String _rev; private String type; private String subject; private String text; + /* FIXME sessionId actually is used to hold the sessionKey. + * This really needs to be changed because it leads to a lot + * of confusion. It can not be easily changed without a lot of + * refactoring since the client application depends on the + * current naming */ private String sessionId; private long timestamp; private boolean read; -- GitLab