Update SixMeaningsQuestion controller to be public.
This commit is contained in:
parent
ce18020eae
commit
ef8ce148ef
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ public class SixMeaningsQuestion extends Question{
|
|||
private DictionaryEntry correctAnswer;
|
||||
private LinkedList<DictionaryEntry> dictionary;
|
||||
|
||||
private SixMeaningsQuestion(DictionaryEntry correctAnswer, LinkedList<DictionaryEntry> dictionary) {
|
||||
public SixMeaningsQuestion(DictionaryEntry correctAnswer, LinkedList<DictionaryEntry> dictionary) {
|
||||
this.correctAnswer = correctAnswer;
|
||||
this.dictionary = dictionary;
|
||||
}
|
||||
|
|
Reference in a new issue