diff options
author | 2015-03-20 18:54:20 +0000 | |
---|---|---|
committer | 2015-03-20 18:54:20 +0000 | |
commit | 8eecbbd618eb9b28d48afc21e852f7505b7cbba8 (patch) | |
tree | 10284e6936748b8336d81d002027aedf49b9537c /java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java | |
parent | 92d0dd0b837ddcd8179cddcf2fc202665d5357a3 (diff) | |
parent | c15bbb52a37be751fed2ba7e765dfd7727306308 (diff) | |
download | latinime-8eecbbd618eb9b28d48afc21e852f7505b7cbba8.tar.gz latinime-8eecbbd618eb9b28d48afc21e852f7505b7cbba8.tar.xz latinime-8eecbbd618eb9b28d48afc21e852f7505b7cbba8.zip |
am c15bbb52: Retire Delight2 migration code to speed up tests.
* commit 'c15bbb52a37be751fed2ba7e765dfd7727306308':
Retire Delight2 migration code to speed up tests.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java')
-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 fa8fb2028..80daedd50 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java @@ -121,8 +121,7 @@ abstract public class ExpandableBinaryDictionary extends Dictionary { private static 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.VERSION402; + return formatVersion == FormatSpec.VERSION402; } public boolean isValidDictionaryLocked() { |