summaryrefslogtreecommitdiff
path: root/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java')
-rw-r--r--icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java b/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java
index f28e60ed5..1b2e8b790 100644
--- a/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java
+++ b/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java
@@ -852,6 +852,7 @@ public final class CaseMapImpl {
int type = UCaseProps.INSTANCE.getTypeOrIgnorable(c);
if ((type & UCaseProps.IGNORABLE) != 0) {
// Case-ignorable, continue with the loop.
+ i += Character.charCount(c);
} else if (type != UCaseProps.NONE) {
return true; // Followed by cased letter.
} else {