Merge pull request #326 from adiaholic/bugFix

Return obtained XmlStringBuilder instead of null
This commit is contained in:
Florian Schmaus 2019-07-28 17:50:09 +02:00 committed by GitHub
commit d2f9617418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class MediaElement implements FormFieldChildElement {
xml.append(uris, xmlEnvironment);
xml.closeElement(this);
return null;
return xml;
}
public MediaElement from(FormField formField) {