return statement ergänzt
This commit is contained in:
parent
9aa49d7dfe
commit
9750a48d68
@ -385,7 +385,7 @@ public class HelloController {
|
||||
|
||||
|
||||
@FXML
|
||||
protected void getLabelValueWithRadio(ActionEvent event)
|
||||
protected ArrayList<String> getLabelValueWithRadio(ActionEvent event)
|
||||
{
|
||||
chosenMeals = new ArrayList<>();
|
||||
String mainDish;
|
||||
@ -455,6 +455,8 @@ public class HelloController {
|
||||
Alert alert = new Alert(Alert.AlertType.INFORMATION);
|
||||
alert.setContentText(chosenMeals.toString());
|
||||
alert.show();
|
||||
|
||||
return chosenMeals;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user