diff options
author | 2014-06-10 10:33:50 +0000 | |
---|---|---|
committer | 2014-06-10 10:33:50 +0000 | |
commit | 8badc761af011767c08f49b0b3da17dac535e4c5 (patch) | |
tree | 70b56bdd587ec4098aaafa32a9df28abc48b3c03 /java/src | |
parent | afc14deb1b5c2f4116cf154402b9473a6c2da974 (diff) | |
parent | 48b0074349c47e37045c2d3c8dc5548f22489a7a (diff) | |
download | latinime-8badc761af011767c08f49b0b3da17dac535e4c5.tar.gz latinime-8badc761af011767c08f49b0b3da17dac535e4c5.tar.xz latinime-8badc761af011767c08f49b0b3da17dac535e4c5.zip |
am 48b00743: Merge "Purge dict reading code for 401 and create for 402."
* commit '48b0074349c47e37045c2d3c8dc5548f22489a7a':
Purge dict reading code for 401 and create for 402.
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java index cf61855b3..4dbfa0bac 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java @@ -115,8 +115,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary { private boolean needsToMigrateDictionary(final int formatVersion) { // When we bump up the dictionary format version, the old version should be added to here // for supporting migration. Note that native code has to support reading such formats. - return formatVersion == FormatSpec.VERSION4_ONLY_FOR_TESTING - || formatVersion == FormatSpec.VERSION401; + return formatVersion == FormatSpec.VERSION4_ONLY_FOR_TESTING; } public boolean isValidDictionaryLocked() { |