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
1 changed files with 1 additions and 1 deletions

View File

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