Skip to content

Commit ed26f62

Browse files
eggrobinmarkusicu
andauthored
uppercase once
Co-authored-by: Markus Scherer <markus.icu@gmail.com>
1 parent 939c80b commit ed26f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unicodetools/src/main/java/org/unicode/props/UnicodeProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ public static String toNameSkeleton(String source, boolean validate) {
798798
throw new IllegalArgumentException(
799799
"Illegal Name Char: U+" + Utility.hex(ch) + ", " + ch);
800800
} else if (ch != '_') {
801-
result.append(Character.toUpperCase(ch));
801+
result.append(ch);
802802
}
803803
}
804804
return result.toString();

0 commit comments

Comments
 (0)