Commit 63707598 by Juho Juopperi

typos

1 parent 1f3c55cb
...@@ -20,7 +20,7 @@ public class PollAnswer extends GenericEventChild implements Serializable { ...@@ -20,7 +20,7 @@ public class PollAnswer extends GenericEventChild implements Serializable {
@ManyToOne @ManyToOne
@Column(name = "question_id", nullable = false) @Column(name = "question_id", nullable = false)
private PossibleAnswer choise; private PossibleAnswer choice;
@ManyToOne @ManyToOne
@Column(name = "user_id", nullable = false) @Column(name = "user_id", nullable = false)
...@@ -34,12 +34,12 @@ public class PollAnswer extends GenericEventChild implements Serializable { ...@@ -34,12 +34,12 @@ public class PollAnswer extends GenericEventChild implements Serializable {
return answerText; return answerText;
} }
public void setChoise(PossibleAnswer choise) { public void setChoice(PossibleAnswer choise) {
this.choise = choise; this.choice = choise;
} }
public PossibleAnswer getChoise() { public PossibleAnswer getChoice() {
return choise; return choice;
} }
public void setUser(User user) { public void setUser(User user) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!