diff --git a/NGCC/src/config/Question.java b/NGCC/src/config/Question.java index 4898113..b6337fc 100644 --- a/NGCC/src/config/Question.java +++ b/NGCC/src/config/Question.java @@ -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 getReponses() { @@ -29,7 +29,7 @@ public class Question { this.reponses = reponses; } - public String getCoeff() { + public int getCoeff() { return coeff; }