diff options
author | 2015-02-04 18:55:39 -0800 | |
---|---|---|
committer | 2015-02-04 18:55:39 -0800 | |
commit | 23d19626f3edd142eab2c58e41e40fdfc27b8b2b (patch) | |
tree | c51ea8efa007b334287a5652c55e11758e3ca995 /java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java | |
parent | 6e0467c20e51bc64f494141cecdfc0fe560d749b (diff) | |
download | latinime-23d19626f3edd142eab2c58e41e40fdfc27b8b2b.tar.gz latinime-23d19626f3edd142eab2c58e41e40fdfc27b8b2b.tar.xz latinime-23d19626f3edd142eab2c58e41e40fdfc27b8b2b.zip |
Use shared constants in old+new facilitators.
Change-Id: I18b701df6ecbcc20ff0c664c218289179c4b2b2d
Diffstat (limited to 'java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java b/java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java index 13bd15101..666813da5 100644 --- a/java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java +++ b/java/src/com/android/inputmethod/latin/DictionaryFacilitatorLruCache.java @@ -128,7 +128,7 @@ public class DictionaryFacilitatorLruCache { public DictionaryFacilitator get(final Locale locale) { DictionaryFacilitator dictionaryFacilitator = mLruCache.get(locale); if (dictionaryFacilitator != null) { - // dictionary falicitator for the locale is in the cache. + // dictionary facilitator for the locale is in the cache. return dictionaryFacilitator; } synchronized (mLock) { |