1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 15:14:54 +02:00

Fix XHTMLText.appendBrTag()

It's an empty element and not a closing one.
This commit is contained in:
Florian Schmaus 2014-07-15 18:02:52 +02:00
parent e6aa2416e4
commit 06ab0e32d7

View file

@ -120,7 +120,7 @@ public class XHTMLText {
* *
*/ */
public XHTMLText appendBrTag() { public XHTMLText appendBrTag() {
text.closeElement(BR); text.emptyElement(BR);
return this; return this;
} }