Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 93ffca3

Browse filesBrowse files
author
John J. Aylward
committed
fixes spacing
1 parent e477d70 commit 93ffca3
Copy full SHA for 93ffca3

File tree

Expand file treeCollapse file tree

1 file changed

+6
-6
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-6
lines changed
Open diff view settings
Collapse file

‎XML.java‎

Copy file name to clipboardExpand all lines: XML.java
+6-6Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.