diff options
author | 2015-02-09 12:22:47 -0800 | |
---|---|---|
committer | 2015-02-11 16:29:14 -0800 | |
commit | 4084fa5caeee09ef7993957c5e922dab14c57f3f (patch) | |
tree | b904b243d8ab05d6dc3e83411713d0b2a55c0014 /java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java | |
parent | 5254c01d4cc024527479d4dc5fab2ed2516c395c (diff) | |
download | latinime-4084fa5caeee09ef7993957c5e922dab14c57f3f.tar.gz latinime-4084fa5caeee09ef7993957c5e922dab14c57f3f.tar.xz latinime-4084fa5caeee09ef7993957c5e922dab14c57f3f.zip |
Refactor content provider code from ContactsDict
Break contacts binary dictionary into two parts
- one that talks to contacts content provider and maintains
local state. Includes a manager class and a content observer
- other one that just manages the dict code.
Change-Id: Ie8f89ac9ce174c803ff3168ee0bee5cbe7721d5b
Diffstat (limited to 'java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java b/java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java index 4ed94058a..3d76751ce 100644 --- a/java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java +++ b/java/src/com/android/inputmethod/latin/DictionaryFacilitatorImpl.java @@ -804,4 +804,9 @@ public class DictionaryFacilitatorImpl implements DictionaryFacilitator { int timeStampInSeconds) { // Do nothing. } + + @Override + public void clearLanguageModel(String filePath) { + // Do nothing. + } } |