Skip to content

Commit 2a27ec4

Browse files
committed
Ever newer parsers
1 parent 215422f commit 2a27ec4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unicodetools/src/main/java/org/unicode/text/UCA/RadicalStroke.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public RadicalStroke(String unicodeVersion) {
9090
// Use only the first radical-stroke value if there are multiple.
9191
int delim = rs.indexOf(' '); // value separator in Unihan data files
9292
if (delim < 0) {
93-
delim = rs.indexOf('|'); // The new parser rewrites multi-values with a | separator.
93+
delim = rs.indexOf(','); // The new parser rewrites multi-values with a , separator.
9494
if (delim < 0) {
9595
delim = rs.length();
9696
}

0 commit comments

Comments
 (0)