mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fixed choice typos
This commit is contained in:
parent
9d1f6ed48e
commit
3bdd2ae8bb
1 changed files with 3 additions and 1 deletions
|
@ -65,7 +65,9 @@ public class ChoiceImpl implements Choice, Serializable {
|
|||
this.chosen = choice.chosen;
|
||||
this.required = choice.required;
|
||||
this.message = choice.message;
|
||||
this.message = choice.subMessage;
|
||||
this.subMessage = choice.subMessage;
|
||||
this.searchEnabled = choice.searchEnabled;
|
||||
this.searchText = choice.searchText;
|
||||
this.choices.addAll(choice.choices);
|
||||
this.choiceKey = choice.choiceKey;
|
||||
this.keyChoices = choice.keyChoices; // list should never change for the same object so copy by reference
|
||||
|
|
Loading…
Reference in a new issue