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

Added FIXME comment on wrongly named property of InterposedQuestion.

parent 25495c88
Branches
Tags
No related merge requests found
...@@ -21,12 +21,17 @@ ...@@ -21,12 +21,17 @@
package de.thm.arsnova.entities; package de.thm.arsnova.entities;
public class InterposedQuestion { public class InterposedQuestion {
private String _id; private String _id;
private String _rev; private String _rev;
private String type; private String type;
private String subject; private String subject;
private String text; 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 String sessionId;
private long timestamp; private long timestamp;
private boolean read; private boolean read;
......
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