Updated behaviour in Assessment generator
Assessment generator now requires only a minimum of 5 practice words, rather than 10
This commit is contained in:
parent
76e69d2859
commit
2ac44cbf39
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ public class AssessmentGenerator {
|
|||
|
||||
//int wordToTranslatePlace;
|
||||
|
||||
if (practiseList.size()<10){
|
||||
if (practiseList.size()<5){
|
||||
Alert alert = new Alert(Alert.AlertType.ERROR);
|
||||
alert.setTitle("Error");
|
||||
alert.setHeaderText("Not enough words in practice list");
|
||||
|
|
Reference in a new issue