mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
[xdata] Fix case in FillableForm
This commit is contained in:
parent
89e39fadd2
commit
3e8666cd91
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ public class FillableForm extends FilledForm {
|
||||||
return FormField.textSingleBuilder(fieldName);
|
return FormField.textSingleBuilder(fieldName);
|
||||||
case hidden:
|
case hidden:
|
||||||
return FormField.hiddenBuilder(fieldName);
|
return FormField.hiddenBuilder(fieldName);
|
||||||
case list_multi:
|
case list_single:
|
||||||
return FormField.listSingleBuilder(fieldName);
|
return FormField.listSingleBuilder(fieldName);
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
|
|
Loading…
Reference in a new issue