Skip to content

Commit 93ffca3

Browse files
author
John J. Aylward
committed
fixes spacing
1 parent e477d70 commit 93ffca3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

XML.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ private static boolean mustEscape(int cp) {
166166
&& cp != 0x9
167167
&& cp != 0xA
168168
&& 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-
)
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+
)
175175
;
176176
}
177177

0 commit comments

Comments
 (0)