diff options
author | 2015-02-26 18:00:12 +0000 | |
---|---|---|
committer | 2015-02-26 18:00:12 +0000 | |
commit | c8828eb8b47042cce13dd3669c29d76bd1213687 (patch) | |
tree | 8262906eb2f94287b33d1633150ec977add1ef97 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 1512af366217562c5b9bdaaf45f0c8a701e8bc49 (diff) | |
parent | 48b071249cd662a5448ae0178e16b0b5026ee4cf (diff) | |
download | latinime-c8828eb8b47042cce13dd3669c29d76bd1213687.tar.gz latinime-c8828eb8b47042cce13dd3669c29d76bd1213687.tar.xz latinime-c8828eb8b47042cce13dd3669c29d76bd1213687.zip |
am 48b07124: Merge "Share decoders among latinime components."
* commit '48b071249cd662a5448ae0178e16b0b5026ee4cf':
Share decoders among latinime components.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 2e0ae5718..c5c7d2d2c 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -126,7 +126,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen final Settings mSettings; private final DictionaryFacilitator mDictionaryFacilitator = - DictionaryFacilitatorProvider.getDictionaryFacilitator(); + DictionaryFacilitatorProvider.getDictionaryFacilitator( + false /* isNeededForSpellChecking */); final InputLogic mInputLogic = new InputLogic(this /* LatinIME */, this /* SuggestionStripViewAccessor */, mDictionaryFacilitator); // We expect to have only one decoder in almost all cases, hence the default capacity of 1. |