mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Fix XHTMLText.appendBrTag()
It's an empty element and not a closing one.
This commit is contained in:
parent
e6aa2416e4
commit
06ab0e32d7
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ public class XHTMLText {
|
|||
*
|
||||
*/
|
||||
public XHTMLText appendBrTag() {
|
||||
text.closeElement(BR);
|
||||
text.emptyElement(BR);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue