aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJatin Matani <jatinm@google.com>2015-02-26 17:54:25 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-02-26 17:54:26 +0000
commit48b071249cd662a5448ae0178e16b0b5026ee4cf (patch)
treebc754dcb437ea7f837b5cf96d72a8dd3daf703f6 /java/src/com/android/inputmethod/latin/LatinIME.java
parent7d7f082075768c03e4b1d4b84ba2e6ef6cba1132 (diff)
parentb684d2d2e4ae4a43a6f499a263a421760fc5c175 (diff)
downloadlatinime-48b071249cd662a5448ae0178e16b0b5026ee4cf.tar.gz
latinime-48b071249cd662a5448ae0178e16b0b5026ee4cf.tar.xz
latinime-48b071249cd662a5448ae0178e16b0b5026ee4cf.zip
Merge "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.java3
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.