1
0
Fork 0
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:
Florian Schmaus 2020-07-06 11:24:13 +02:00
parent 89e39fadd2
commit 3e8666cd91

View file

@ -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();