Build: #243 failed Changes by Florian Schmaus
Code commits
Smack (4.4)
-
Florian Schmaus 8b9a9e0f3e11d8a251c01fe68678dfea6c96e05d
[xdata] Fix NPE in FillableForm
Calling write() in FillableForm's constructor causes a NPE because
write() makes use of requiredFields which has not been set at this
time. Furthermore, write() makes use of missingRequiredFields, which
is also populated in that loop. Therefore, we have to delay the
invocation of write() until requiredFields got set.
Thanks to Dan Caseley for reporting this.
Reported-by: Dan Caseley <dan@caseley.me.uk>