Loading java/src/com/android/inputmethod/latin/spellcheck/AndroidSpellCheckerService.java +5 −1 Original line number Diff line number Diff line Loading @@ -154,8 +154,12 @@ public class AndroidSpellCheckerService extends SpellCheckerService private void startUsingContactsDictionaryLocked() { if (null == mContactsDictionary) { if (LatinIME.USE_BINARY_CONTACTS_DICTIONARY) { mContactsDictionary = new SynchronouslyLoadedContactsBinaryDictionary(this); } else { mContactsDictionary = new SynchronouslyLoadedContactsDictionary(this); } } final Iterator<WeakReference<DictionaryCollection>> iterator = mDictionaryCollectionsList.iterator(); while (iterator.hasNext()) { Loading Loading
java/src/com/android/inputmethod/latin/spellcheck/AndroidSpellCheckerService.java +5 −1 Original line number Diff line number Diff line Loading @@ -154,8 +154,12 @@ public class AndroidSpellCheckerService extends SpellCheckerService private void startUsingContactsDictionaryLocked() { if (null == mContactsDictionary) { if (LatinIME.USE_BINARY_CONTACTS_DICTIONARY) { mContactsDictionary = new SynchronouslyLoadedContactsBinaryDictionary(this); } else { mContactsDictionary = new SynchronouslyLoadedContactsDictionary(this); } } final Iterator<WeakReference<DictionaryCollection>> iterator = mDictionaryCollectionsList.iterator(); while (iterator.hasNext()) { Loading