Skip to content

Commit

Permalink
And one more LGTM.com warning fix (wrt #121)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 20, 2021
1 parent 2b597bc commit 72410f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ctc/wstx/sw/BufferingXmlWriter.java
Expand Up @@ -484,7 +484,7 @@ public void writeCharacters(String text) throws IOException
if (c < MAXQC) {
if (QC[c] != 0) {
if (c < 0x0020) {
if (c != ' ' && c != '\n' && c != '\t') { // fine as is
if (c != '\n' && c != '\t') { // fine as is
if (c == '\r') {
if (mEscapeCR) {
break inner_loop;
Expand Down

0 comments on commit 72410f4

Please sign in to comment.