Commit 63707598 by Juho Juopperi

typos

1 parent 1f3c55cb
......@@ -20,7 +20,7 @@ public class PollAnswer extends GenericEventChild implements Serializable {
@ManyToOne
@Column(name = "question_id", nullable = false)
private PossibleAnswer choise;
private PossibleAnswer choice;
@ManyToOne
@Column(name = "user_id", nullable = false)
......@@ -34,12 +34,12 @@ public class PollAnswer extends GenericEventChild implements Serializable {
return answerText;
}
public void setChoise(PossibleAnswer choise) {
this.choise = choise;
public void setChoice(PossibleAnswer choise) {
this.choice = choise;
}
public PossibleAnswer getChoise() {
return choise;
public PossibleAnswer getChoice() {
return choice;
}
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!