aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-08-22 09:41:46 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-22 09:41:46 +0000
commit6c638d1bbdd4b1b8d49531ef41d337bd3ccbec32 (patch)
tree43c1adb59b6e1d67c19f4dc19483905496bb9ac9 /java/src/com/android/inputmethod/latin/LatinIME.java
parenteb99b461f03a48317598289ab12ea30a617c537c (diff)
parenta63d0a8ee6cb05bcddb69bf9a6018853d89d886a (diff)
downloadlatinime-6c638d1bbdd4b1b8d49531ef41d337bd3ccbec32.tar.gz
latinime-6c638d1bbdd4b1b8d49531ef41d337bd3ccbec32.tar.xz
latinime-6c638d1bbdd4b1b8d49531ef41d337bd3ccbec32.zip
Merge "Revert "[ML1] Introduce RichInputMethodSubtype""
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 660b2daf2..e1d809907 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -747,8 +747,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
public void onCurrentInputMethodSubtypeChanged(final InputMethodSubtype subtype) {
// Note that the calling sequence of onCreate() and onCurrentInputMethodSubtypeChanged()
// is not guaranteed. It may even be called at the same time on a different thread.
- final RichInputMethodSubtype richSubtype = new RichInputMethodSubtype(subtype);
- mSubtypeSwitcher.onSubtypeChanged(richSubtype);
+ mSubtypeSwitcher.onSubtypeChanged(subtype);
mInputLogic.onSubtypeChanged(SubtypeLocaleUtils.getCombiningRulesExtraValue(subtype));
loadKeyboard();
}