diff options
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-rw-r--r-- | java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java index 9d7849ffc..71aaf5e01 100644 --- a/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java +++ b/java/src/com/android/inputmethod/latin/RichInputMethodSubtype.java @@ -47,7 +47,7 @@ public class RichInputMethodSubtype { public RichInputMethodSubtype(@Nonnull final InputMethodSubtype subtype) { mSubtype = subtype; - mLocale = LocaleUtils.constructLocaleFromString(mSubtype.getLocale()); + mLocale = InputMethodSubtypeCompatUtils.getLocaleObject(mSubtype); } // Extra values are determined by the primary subtype. This is probably right, but |