We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e477d70 commit 93ffca3Copy full SHA for 93ffca3
1 file changed
XML.java
@@ -166,12 +166,12 @@ private static boolean mustEscape(int cp) {
166
&& cp != 0x9
167
&& cp != 0xA
168
&& cp != 0xD
169
- ) || !(
170
- // valid the range of acceptable characters that aren't control
171
- (cp >= 0x20 && cp <= 0xD7FF)
172
- || (cp >= 0xE000 && cp <= 0xFFFD)
173
- || (cp >= 0x10000 && cp <= 0x10FFFF)
174
- )
+ ) || !(
+ // valid the range of acceptable characters that aren't control
+ (cp >= 0x20 && cp <= 0xD7FF)
+ || (cp >= 0xE000 && cp <= 0xFFFD)
+ || (cp >= 0x10000 && cp <= 0x10FFFF)
+ )
175
;
176
}
177
0 commit comments