[xdata] Fix case in FillableForm

This commit is contained in:
Florian Schmaus 2020-07-06 11:24:13 +02:00
parent 89e39fadd2
commit 3e8666cd91
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ public class FillableForm extends FilledForm {
return FormField.textSingleBuilder(fieldName);
case hidden:
return FormField.hiddenBuilder(fieldName);
case list_multi:
case list_single:
return FormField.listSingleBuilder(fieldName);
default:
throw new IllegalArgumentException();