fix ';' and change type from String to int (matching attributes)

This commit is contained in:
JunkJumper 2019-09-23 08:15:46 +02:00
parent 2b24b376a8
commit df779a87ba

View File

@ -18,7 +18,7 @@ public class Question {
public Question(String t, boolean b, int n) {
titre = t;
multiple = b;
coeff = n
coeff = n;
}
public ArrayList<Reponse> getReponses() {
@ -29,7 +29,7 @@ public class Question {
this.reponses = reponses;
}
public String getCoeff() {
public int getCoeff() {
return coeff;
}