diff options
author | 2013-12-10 19:42:01 -0800 | |
---|---|---|
committer | 2013-12-10 19:42:01 -0800 | |
commit | d08928047041c35c384e5a4aad1a15f012da6df6 (patch) | |
tree | de54e8e3b6b7335105a1fe7461f61260c61d69ae /java/src/com/android/inputmethod/latin/personalization | |
parent | ecbe12d19e7667400613e5240056fbc1df65a549 (diff) | |
parent | 97351ad34ce25e3feeba6878ff66eb56d6a30483 (diff) | |
download | latinime-d08928047041c35c384e5a4aad1a15f012da6df6.tar.gz latinime-d08928047041c35c384e5a4aad1a15f012da6df6.tar.xz latinime-d08928047041c35c384e5a4aad1a15f012da6df6.zip |
am 97351ad3: Merge "Fix typos."
* commit '97351ad34ce25e3feeba6878ff66eb56d6a30483':
Fix typos.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization')
-rw-r--r-- | java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java b/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java index 02b09fb0c..faa98963c 100644 --- a/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java +++ b/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java @@ -84,7 +84,7 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB } // Flush pending writes. // TODO: Remove after this class become to use a dynamic binary dictionary. - asyncFlashAllBinaryDictionary(); + asyncFlushBinaryDictionary(); } @Override @@ -121,7 +121,7 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB } @Override - protected String getFileNameExtentionToOpenDict() { + protected String getFileNameExtensionToOpenDict() { // TODO: pass the directory name instead return "/" + FormatSpec.HEADER_FILE_EXTENSION; } @@ -240,7 +240,7 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB // Clear the node structure on memory clear(); // Then flush the cleared state of the dictionary on disk. - asyncFlashAllBinaryDictionary(); + asyncFlushBinaryDictionary(); } /* package */ void decayIfNeeded() { |