1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-19 02:22:05 +01:00

[xdata] Allow FillableForm.write() ot overwrite already filled fields

This commit is contained in:
Florian Schmaus 2021-04-01 12:54:52 +02:00
parent 8c57d34b97
commit 68edc8b9f5

View file

@ -224,9 +224,6 @@ public class FillableForm extends FilledForm {
if (!getDataForm().hasField(fieldName)) {
throw new IllegalArgumentException();
}
if (filledFields.containsKey(fieldName)) {
throw new IllegalArgumentException();
}
// Perform validation, e.g. using XEP-0122.
// TODO: We could also perform list-* option validation, but this has to take xep122's <open/> into account.