Update SixMeaningsQuestion controller to be public.

This commit is contained in:
Brad Corbett 2020-04-29 11:58:22 +01:00
parent ce18020eae
commit ef8ce148ef

View file

@ -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;
}