Skip to content

Commit

Permalink
WIP ADAM fix to serializer - consider rewriting the writeChars() meth…
Browse files Browse the repository at this point in the history
…od to only use one loop
  • Loading branch information
adamretter committed Dec 4, 2024
1 parent fb133a2 commit ea44baf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public void characters(final CharSequence chars) throws TransformerException {
if(tagIsOpen) {
closeStartTag(false);
}
writer.append(chars);
writeChars(chars, false);
} catch(final IOException ioe) {
throw new TransformerException(ioe.getMessage(), ioe);
}
Expand Down

0 comments on commit ea44baf

Please sign in to comment.